Overview
Max Total Supply
100,180,504.036023415564601101 EURxb
Holders
221 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000843176241447785 EURxbValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract contains unverified libraries: LinkedList, TokenAccessRoles
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
EURxb
Compiler Version
v0.6.3+commit.8dda9521
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.6.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./interfaces/IEURxb.sol"; import "./libraries/LinkedList.sol"; import "./templates/Initializable.sol"; import "./templates/OverrideERC20.sol"; import { TokenAccessRoles } from "./libraries/TokenAccessRoles.sol"; /** * @title EURxb * @dev EURxb token */ contract EURxb is AccessControl, OverrideERC20, IEURxb, Initializable { using SafeMath for uint256; using Address for address; using LinkedList for LinkedList.List; uint256 private constant UNIT = 10**18; uint256 private constant PER_YEAR = 31536000 * 10 ** 18; // UNIT.mul(365).mul(86400); uint256 private _countMaturity; uint256 private _totalActiveValue; uint256 private _annualInterest; uint256 private _accrualTimestamp; uint256 private _expIndex; mapping(address => uint256) private _holderIndex; LinkedList.List private _list; // list of maturity ends and amounts mapping(uint256 => uint256) private _deletedMaturity; // timestamp->amount address private _ddp; modifier onlyDDP() { require(_msgSender() == _ddp, "Caller is not allowed this function"); _; } constructor(address admin) public OverrideERC20("EURxb", "EURxb") { _annualInterest = 7 * 10**16; _expIndex = UNIT; _countMaturity = 100; _setupRole(TokenAccessRoles.admin(), admin); } function configure(address ddp) external initializer { _ddp = ddp; _setupRole(TokenAccessRoles.minter(), ddp); _setupRole(TokenAccessRoles.burner(), ddp); } /** * @dev Return countMaturity */ function countMaturity() external view returns (uint256) { return _countMaturity; } /** * @dev Return totalActiveValue */ function totalActiveValue() external view returns (uint256) { return _totalActiveValue; } /** * @dev Return annualInterest */ function annualInterest() external view returns (uint256) { return _annualInterest; } /** * @dev Return accrualTimestamp */ function accrualTimestamp() external view returns (uint256) { return _accrualTimestamp; } /** * @dev Return expIndex */ function expIndex() external view returns (uint256) { return _expIndex; } /** * @dev Return first added maturity */ function getFirstMaturity() external view returns (uint256) { uint256 head = _list.getHead(); (, uint256 maturityEnd, , ) = _list.getNodeValue(head); return maturityEnd; } /** * @dev Return last added maturity */ function getLastMaturity() external view returns (uint256) { uint256 end = _list.getEnd(); (, uint256 maturityEnd, , ) = _list.getNodeValue(end); return maturityEnd; } /** * @dev Return first maturity id */ function getFirstMaturityId() external view returns (uint256) { return _list.getHead(); } /** * @dev Return maturity info by id */ function getMaturityInfo(uint256 id) external view returns (uint256 amount, uint256 maturity, uint256 prev ,uint256 next) { (amount, maturity, prev , next) = _list.getNodeValue(id); amount = amount.sub(_deletedMaturity[maturity]); } /** * @dev Set countMaturity * @param count maturity */ function setCountMaturity(uint256 count) external { require( hasRole(TokenAccessRoles.admin(), _msgSender()), "Caller is not an admin" ); require(count > 0, "The amount must be greater than zero"); _countMaturity = count; } /** * @dev Mint tokens * @param account user address * @param amount number of tokens */ function mint(address account, uint256 amount) external override { require( hasRole(TokenAccessRoles.minter(), _msgSender()), "Caller is not an minter" ); require(account != address(0), "Mint to zero address"); accrueInterest(); _updateBalance(account); super._mint(account, amount); } /** * @dev Burn tokens * @param account user address * @param amount number of tokens */ function burn(address account, uint256 amount) external override { require( hasRole(TokenAccessRoles.burner(), _msgSender()), "Caller is not an burner" ); require(account != address(0), "Burn from zero address"); accrueInterest(); _updateBalance(account); super._burn(account, amount); } /** * @dev Added new maturity * @param amount number of tokens * @param maturityEnd end date of interest accrual */ function addNewMaturity(uint256 amount, uint256 maturityEnd) onlyDDP external override { // require(amount > 0, "The amount must be greater than zero"); // TODO: check into DDP // require(maturityEnd > 0, "End date must be greater than zero"); _totalActiveValue = _totalActiveValue.add(amount); if (!_list.listExists()) { _list.pushBack(amount, maturityEnd); return; } uint256 id = _list.getEnd(); (, uint256 maturityNode, uint256 prevIDNode, uint256 nextIDNode) = _list.getNodeValue(id); if (maturityNode < maturityEnd) { // Check end list _list.pushBack(amount, maturityEnd); return; } // TODO: maybe many elements // TODO: maybe you need to add close dates while (true) { if (maturityNode == maturityEnd) { // Check equal _list.addElementAmount(id, amount); break; } if (id == _list.getHead() && maturityNode > maturityEnd) { // Check before first _list.pushBefore(id, amount, maturityEnd); break; } id = prevIDNode; (, maturityNode, prevIDNode, nextIDNode) = _list.getNodeValue(id); if (maturityNode < maturityEnd) { // Check between periods _list.pushBefore(nextIDNode, amount, maturityEnd); break; } } } /** * @dev Remove maturity * @param amount number of tokens * @param maturityEnd end date of interest accrual */ function removeMaturity(uint256 amount, uint256 maturityEnd) onlyDDP external override { // require(amount > 0, "The amount must be greater than zero"); // TODO: check into DDP // require(maturityEnd > 0, "End date must be greater than zero"); require(_list.listExists(), "The list does not exist"); _totalActiveValue = _totalActiveValue.sub(amount); _deletedMaturity[maturityEnd] = _deletedMaturity[maturityEnd].add(amount); } /** * @dev Return user balance * @param account user address */ function balanceOf(address account) public override view returns (uint256) { return balanceByTime(account, block.timestamp); } /** * @dev User balance calculation * @param account user address * @param timestamp date */ function balanceByTime(address account, uint256 timestamp) public view returns (uint256) { if (super.balanceOf(account) > 0 && _holderIndex[account] > 0) { uint256 currentTotalActiveValue = _totalActiveValue; uint256 currentExpIndex = _expIndex; uint256 head = _list.getHead(); uint256 currentAccrualTimestamp = _accrualTimestamp; (uint256 amount, uint256 maturityEnd, , uint256 next) = _list.getNodeValue(head); while ( _list.listExists() && maturityEnd <= timestamp && currentAccrualTimestamp < maturityEnd ) { currentExpIndex = _calculateInterest( maturityEnd, _annualInterest.mul(currentTotalActiveValue), currentExpIndex, currentAccrualTimestamp ); currentAccrualTimestamp = maturityEnd; uint256 deleteAmount = _deletedMaturity[maturityEnd]; currentTotalActiveValue = currentTotalActiveValue.sub(amount.sub(deleteAmount)); if (next == 0) { break; } (amount, maturityEnd, , next) = _list.getNodeValue(next); } currentExpIndex = _calculateInterest( timestamp, _annualInterest.mul(currentTotalActiveValue), currentExpIndex, currentAccrualTimestamp ); return super.balanceOf(account).mul(currentExpIndex).div(_holderIndex[account]); } return super.balanceOf(account); } /** * @dev Calculation of accrued interest */ function accrueInterest() public { uint256 head = _list.getHead(); (uint256 amount, uint256 maturityEnd, , uint256 next) = _list.getNodeValue(head); for (uint256 i = 1; _list.listExists() && maturityEnd <= block.timestamp && _accrualTimestamp < maturityEnd; i++) { _expIndex = _calculateInterest( maturityEnd, _annualInterest.mul(_totalActiveValue), _expIndex, _accrualTimestamp ); _accrualTimestamp = maturityEnd; uint256 deleteAmount = _deletedMaturity[maturityEnd]; _totalActiveValue = _totalActiveValue.sub(amount.sub(deleteAmount)); // delete _deletedMaturity[maturityEnd]; // save for history if (next == 0) { break; } _list.setHead(next); (amount, maturityEnd, , next) = _list.getNodeValue(next); if (i == _countMaturity) { return; // pagination counter overflow } } _expIndex = _calculateInterest( block.timestamp, _annualInterest.mul(_totalActiveValue), _expIndex, _accrualTimestamp ); _accrualTimestamp = block.timestamp; } /** * @dev Calculate interest * @param timestampNow the current date * @param interest percent * @param prevIndex previous index */ function _calculateInterest(uint256 timestampNow, uint256 interest, uint256 prevIndex, uint256 lastAccrualTimestamp) internal view returns (uint256) { if (totalSupply() == 0) { return prevIndex; } uint256 period = timestampNow.sub(lastAccrualTimestamp); if (period < 60) { return prevIndex; } uint256 interestFactor = interest.mul(period); uint256 newExpIndex = (interestFactor.mul(prevIndex).div(PER_YEAR).div(totalSupply())) .add(prevIndex); return newExpIndex; } /** * @dev Update user balance * @param account user address */ function _updateBalance(address account) internal { uint256 balance = super.balanceOf(account); if (_holderIndex[account] > 0) { uint256 newBalance = balance.mul(_expIndex).div( _holderIndex[account] ); uint256 delta = newBalance.sub(balance); if (delta != 0) { super._mint(account, delta); } } _holderIndex[account] = _expIndex; } /** * @dev Transfer tokens * @param sender user address * @param recipient user address * @param amount number of tokens */ function _transfer(address sender, address recipient, uint256 amount) internal override { accrueInterest(); if (sender != address(0)) { _updateBalance(sender); } if (recipient != address(0)) { _updateBalance(recipient); } super._transfer(sender, recipient, amount); } }
pragma solidity >=0.6.0 <0.7.0; interface IEURxb { function mint(address account, uint256 value) external; function burn(address account, uint256 value) external; function addNewMaturity(uint256 amount, uint256 maturityEnd) external; function removeMaturity(uint256 amount, uint256 maturityEnd) external; }
pragma solidity ^0.6.0; import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @title LinkedList * @dev An utility library for using sorted linked list data structures in your Solidity project. */ library LinkedList { using SafeMath for uint256; struct Node { uint256 amount; uint256 maturityEnd; uint256 prev; // if 0 then head list uint256 next; // if 0 then end list } struct List { uint256 head; uint256 end; uint256 counter; mapping(uint256 => Node) list; } /** * @dev Checks if the list exists * @param self stored linked list from contract * @return bool true if list exists, false otherwise */ function listExists(List storage self) external view returns (bool) { return self.head != 0; } /** * @dev Returns a pointer to the beginning of the list * @param self stored linked list from contract * @return uint256 id */ function getHead(List storage self) external view returns (uint256) { return self.head; } /** * @dev Returns a pointer to the end of the list * @param self stored linked list from contract * @return uint256 id */ function getEnd(List storage self) external view returns (uint256) { return self.end; } /** * @dev Returns the value of the node * @param self stored linked list from contract * @param id node */ function getNodeValue(List storage self, uint256 id) external view returns ( uint256 amount, uint256 maturityEnd, uint256 prev, uint256 next ) { amount = self.list[id].amount; maturityEnd = self.list[id].maturityEnd; prev = self.list[id].prev; next = self.list[id].next; } /** * @dev Setting the pointer to the beginning of the list * @param self stored linked list from contract * @param id node */ function setHead(List storage self, uint256 id) external { self.head = id; } /** * @dev Add amount to element of the list * @param self stored linked list from contract * @param id element * @param amount tokens */ function addElementAmount(List storage self, uint256 id, uint256 amount) external { self.list[id].amount = self.list[id].amount.add(amount); } /** * @dev Adding to the end of the list * @param self stored linked list from contract * @param amount number of tokens * @param maturityEnd end date of interest accrual */ function pushBack(List storage self, uint256 amount, uint256 maturityEnd) external { self.counter += 1; if (self.end != 0) { self.list[self.end].next = self.counter; } self.list[self.counter] = Node( amount, maturityEnd, self.end, 0 ); self.end = self.counter; self.head = self.head == 0 ? self.counter : self.head; } /** * @dev Adding to the list before a node * @param self stored linked list from contract * @param id node * @param amount number of tokens * @param maturityEnd end date of interest accrual */ function pushBefore( List storage self, uint256 id, uint256 amount, uint256 maturityEnd ) external { require(id > 0, "ID must be greater than 0"); self.counter += 1; uint256 nodeIDPrev = self.list[id].prev; self.list[id].prev = self.counter; if (nodeIDPrev > 0) { self.list[nodeIDPrev].next = self.counter; } else { self.head = self.counter; } self.list[self.counter] = Node( amount, maturityEnd, nodeIDPrev, id ); } /** * @dev Removing from the list * @param self stored linked list from contract * @param id node */ function remove(List storage self, uint256 id) external { require(id > 0, "ID must be greater than 0"); uint256 nodeIDPrev = self.list[id].prev; uint256 nodeIDNext = self.list[id].next; if (nodeIDPrev > 0) { self.list[nodeIDPrev].next = nodeIDNext; } else { self.head = nodeIDNext; } if (nodeIDNext > 0) { self.list[nodeIDNext].prev = nodeIDPrev; } else { self.end = nodeIDPrev; } delete self.list[id]; } }
pragma solidity >=0.6.0 <0.7.0; library TokenAccessRoles { bytes32 private constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 private constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 private constant TRANSFERER_ROLE = keccak256("TRANSFERER_ROLE"); bytes32 private constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); function minter() public pure returns (bytes32) { return MINTER_ROLE; } function burner() public pure returns (bytes32) { return BURNER_ROLE; } function transferer() public pure returns (bytes32) { return TRANSFERER_ROLE; } function admin() public pure returns (bytes32) { return ADMIN_ROLE; } }
pragma solidity >=0.6.0 <0.7.0; import "@openzeppelin/contracts/GSN/Context.sol"; /** * @title Initializable allows to create initializable contracts * so that only deployer can initialize contract and only once */ contract Initializable is Context { bool private _isContractInitialized; address private _deployer; constructor() public { _deployer = _msgSender(); } modifier initializer { require(_msgSender() == _deployer, "user not allowed to initialize"); require(!_isContractInitialized, "contract already initialized"); _; _isContractInitialized = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/GSN/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {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 OverrideERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; // mapping (address => uint256) private _balances; // @openzeppelin mapping (address => uint256) internal _balances; // custom code mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ // function balanceOf(address account) public view override returns (uint256) { // @openzeppelin function balanceOf(address account) public view override virtual returns (uint256) { // custom code 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 {} }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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 { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet 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 Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @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 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 { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _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 { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _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 { 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, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": { "/home/user/Documents/Project/solidity/miris-sc/contracts/libraries/LinkedList.sol": { "LinkedList": "0x5B6537A722A9C65F9EbE7559936A07ffc257aD11" }, "/home/user/Documents/Project/solidity/miris-sc/contracts/libraries/TokenAccessRoles.sol": { "TokenAccessRoles": "0x19E1d1071efF086649E7DdDF634d0f1490cb8FD5" } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrualTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrueInterest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maturityEnd","type":"uint256"}],"name":"addNewMaturity","outputs":[],"stateMutability":"nonpayable","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":[],"name":"annualInterest","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"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"balanceByTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ddp","type":"address"}],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"countMaturity","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":[],"name":"expIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFirstMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFirstMaturityId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getMaturityInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maturity","type":"uint256"},{"internalType":"uint256","name":"prev","type":"uint256"},{"internalType":"uint256","name":"next","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maturityEnd","type":"uint256"}],"name":"removeMaturity","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setCountMaturity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalActiveValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200498238038062004982833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600581526020017f45555278620000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f45555278620000000000000000000000000000000000000000000000000000008152508160049080519060200190620000cc929190620003a9565b508060059080519060200190620000e5929190620003a9565b506012600660006101000a81548160ff021916908360ff1602179055505050620001146200021360201b60201c565b600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066f8b0a10e470000600981905550670de0b6b3a7640000600b8190555060646007819055506200020c7319e1d1071eff086649e7dddf634d0f1490cb8fd563f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c257600080fd5b505af4158015620001d7573d6000803e3d6000fd5b505050506040513d6020811015620001ee57600080fd5b8101908080519060200190929190505050826200021b60201b60201c565b5062000458565b600033905090565b6200022d82826200023160201b60201c565b5050565b6200025f81600080858152602001908152602001600020600001620002d460201b62003f4e1790919060201c565b15620002d057620002756200021360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000304836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200030c60201b60201c565b905092915050565b60006200032083836200038660201b60201c565b6200037b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000380565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ec57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041c578251825591602001919060010190620003ff565b5b5090506200042c919062000430565b5090565b6200045591905b808211156200045157600081600090555060010162000437565b5090565b90565b61451a80620004686000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806389e36ff111610125578063a9059cbb116100ad578063ca15c8731161007c578063ca15c87314610a9e578063d547741f14610ae0578063dd62ed3e14610b2e578063f65d6b4914610ba6578063fb79d9b714610bc45761021c565b8063a9059cbb146109de578063b2552fc414610a44578063b95b92a314610a62578063ba68018a14610a805761021c565b806395d89b41116100f457806395d89b411461087f5780639dc29fac14610902578063a217fddf14610950578063a457c2d71461096e578063a6afed95146109d45761021c565b806389e36ff11461072c5780639010d07c1461078357806390818a41146107fb57806391d14854146108195761021c565b806336568abe116101a85780635bc2cc79116101775780635bc2cc79146105d85780636ab531d51461061057806370a082311461062e57806375cb2672146106865780637f795bc3146106ca5761021c565b806336568abe1461049e57806339509351146104ec57806340c10f191461055257806346451877146105a05761021c565b806323b872dd116101ef57806323b872dd14610346578063248a9ca3146103cc5780632f2ff15d1461040e578063313ce5671461045c578063320d97e2146104805761021c565b806306fdde0314610221578063095ea7b3146102a45780630a228d511461030a57806318160ddd14610328575b600080fd5b610229610bf2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026957808201518184015260208101905061024e565b50505050905090810190601f1680156102965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f0600480360360408110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c94565b604051808215151515815260200191505060405180910390f35b610312610cb2565b6040518082815260200191505060405180910390f35b610330610cbc565b6040518082815260200191505060405180910390f35b6103b26004803603606081101561035c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc6565b604051808215151515815260200191505060405180910390f35b6103f8600480360360208110156103e257600080fd5b8101908080359060200190929190505050610d9f565b6040518082815260200191505060405180910390f35b61045a6004803603604081101561042457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbe565b005b610464610e47565b604051808260ff1660ff16815260200191505060405180910390f35b610488610e5e565b6040518082815260200191505060405180910390f35b6104ea600480360360408110156104b457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ef2565b005b6105386004803603604081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f8b565b604051808215151515815260200191505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103e565b005b6105d6600480360360408110156105b657600080fd5b810190808035906020019092919080359060200190929190505050611201565b005b61060e600480360360408110156105ee57600080fd5b810190808035906020019092919080359060200190929190505050611409565b005b610618611ad4565b6040518082815260200191505060405180910390f35b6106706004803603602081101561064457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c28565b6040518082815260200191505060405180910390f35b6106c86004803603602081101561069c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3b565b005b610716600480360360408110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ef7565b6040518082815260200191505060405180910390f35b6107586004803603602081101561074257600080fd5b810190808035906020019092919050505061234b565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390f35b6107b96004803603604081101561079957600080fd5b810190808035906020019092919080359060200190929190505050612443565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610803612474565b6040518082815260200191505060405180910390f35b6108656004803603604081101561082f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c8565b604051808215151515815260200191505060405180910390f35b6108876125f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108c75780820151818401526020810190506108ac565b50505050905090810190601f1680156108f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61094e6004803603604081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061269b565b005b61095861285e565b6040518082815260200191505060405180910390f35b6109ba6004803603604081101561098457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612865565b604051808215151515815260200191505060405180910390f35b6109dc612932565b005b610a2a600480360360408110156109f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612d4c565b604051808215151515815260200191505060405180910390f35b610a4c612d6a565b6040518082815260200191505060405180910390f35b610a6a612d74565b6040518082815260200191505060405180910390f35b610a88612d7e565b6040518082815260200191505060405180910390f35b610aca60048036036020811015610ab457600080fd5b8101908080359060200190929190505050612d88565b6040518082815260200191505060405180910390f35b610b2c60048036036040811015610af657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dae565b005b610b9060048036036040811015610b4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e37565b6040518082815260200191505060405180910390f35b610bae612ebe565b6040518082815260200191505060405180910390f35b610bf060048036036020811015610bda57600080fd5b8101908080359060200190929190505050612ec8565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b5050505050905090565b6000610ca8610ca161302c565b8484613034565b6001905092915050565b6000600854905090565b6000600354905090565b6000610cd384848461322b565b610d9484610cdf61302c565b610d8f856040518060600160405280602881526020016143b860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d4561302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b613034565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b610de460008084815260200190815260200160002060020154610ddf61302c565b6125c8565b610e39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806142ce602f913960400191505060405180910390fd5b610e43828261337f565b5050565b6000600660009054906101000a900460ff16905090565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610eb257600080fd5b505af4158015610ec6573d6000803e3d6000fd5b505050506040513d6020811015610edc57600080fd5b8101908080519060200190929190505050905090565b610efa61302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806144b6602f913960400191505060405180910390fd5b610f878282613412565b5050565b6000611034610f9861302c565b8461102f8560026000610fa961302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b613034565b6001905092915050565b6110cd7319e1d1071eff086649e7dddf634d0f1490cb8fd563075461726040518163ffffffff1660e01b815260040160206040518083038186803b15801561108557600080fd5b505af4158015611099573d6000803e3d6000fd5b505050506040513d60208110156110af57600080fd5b81019080805190602001909291905050506110c861302c565b6125c8565b61113f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420616e206d696e74657200000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d696e7420746f207a65726f206164647265737300000000000000000000000081525060200191505060405180910390fd5b6111ea612932565b6111f38261352d565b6111fd8282613663565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661124261302c565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061444a6023913960400191505060405180910390fd5b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561130057600080fd5b505af4158015611314573d6000803e3d6000fd5b505050506040513d602081101561132a57600080fd5b81019080805190602001909291905050506113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f546865206c69737420646f6573206e6f7420657869737400000000000000000081525060200191505060405180910390fd5b6113c28260085461382c90919063ffffffff16565b6008819055506113ee8260116000848152602001908152602001600020546134a590919063ffffffff16565b60116000838152602001908152602001600020819055505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144a61302c565b73ffffffffffffffffffffffffffffffffffffffff16146114b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061444a6023913960400191505060405180910390fd5b6114cb826008546134a590919063ffffffff16565b600881905550600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561152357600080fd5b505af4158015611537573d6000803e3d6000fd5b505050506040513d602081101561154d57600080fd5b81019080805190602001909291905050506115e157600d735b6537a722a9c65f9ebe7559936a07ffc257ad11633c228ca3909184846040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b1580156115c457600080fd5b505af41580156115d8573d6000803e3d6000fd5b50505050611ad0565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163d345690e90916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561163557600080fd5b505af4158015611649573d6000803e3d6000fd5b505050506040513d602081101561165f57600080fd5b810190808051906020019092919050505090506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156116d157600080fd5b505af41580156116e5573d6000803e3d6000fd5b505050506040513d60808110156116fb57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919050505093509350935050848310156117bc57600d735b6537a722a9c65f9ebe7559936a07ffc257ad11633c228ca3909188886040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b15801561179b57600080fd5b505af41580156117af573d6000803e3d6000fd5b5050505050505050611ad0565b5b600115611acb578483141561184b57600d735b6537a722a9c65f9ebe7559936a07ffc257ad116316eb34ca909186896040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b15801561182e57600080fd5b505af4158015611842573d6000803e3d6000fd5b50505050611acb565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561189d57600080fd5b505af41580156118b1573d6000803e3d6000fd5b505050506040513d60208110156118c757600080fd5b8101908080519060200190929190505050841480156118e557508483115b1561197157600d735b6537a722a9c65f9ebe7559936a07ffc257ad11632ba5c9fa90918689896040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060006040518083038186803b15801561195457600080fd5b505af4158015611968573d6000803e3d6000fd5b50505050611acb565b819350600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156119ce57600080fd5b505af41580156119e2573d6000803e3d6000fd5b505050506040513d60808110156119f857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509091925080935081945082955050505084831015611ac657600d735b6537a722a9c65f9ebe7559936a07ffc257ad11632ba5c9fa90918389896040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060006040518083038186803b158015611aa957600080fd5b505af4158015611abd573d6000803e3d6000fd5b50505050611acb565b6117bd565b505050505b5050565b600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611b2957600080fd5b505af4158015611b3d573d6000803e3d6000fd5b505050506040513d6020811015611b5357600080fd5b810190808051906020019092919050505090506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015611bc257600080fd5b505af4158015611bd6573d6000803e3d6000fd5b505050506040513d6080811015611bec57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050505050915050809250505090565b6000611c348242611ef7565b9050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c7c61302c565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f75736572206e6f7420616c6c6f77656420746f20696e697469616c697a65000081525060200191505060405180910390fd5b600660019054906101000a900460ff1615611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f636f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611e517319e1d1071eff086649e7dddf634d0f1490cb8fd563075461726040518163ffffffff1660e01b815260040160206040518083038186803b158015611e1057600080fd5b505af4158015611e24573d6000803e3d6000fd5b505050506040513d6020811015611e3a57600080fd5b810190808051906020019092919050505082613876565b611ed97319e1d1071eff086649e7dddf634d0f1490cb8fd56327810b6e6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e9857600080fd5b505af4158015611eac573d6000803e3d6000fd5b505050506040513d6020811015611ec257600080fd5b810190808051906020019092919050505082613876565b6001600660016101000a81548160ff02191690831515021790555050565b600080611f0384613884565b118015611f4f57506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561233957600060085490506000600b5490506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611fb657600080fd5b505af4158015611fca573d6000803e3d6000fd5b505050506040513d6020811015611fe057600080fd5b810190808051906020019092919050505090506000600a5490506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091876040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561205957600080fd5b505af415801561206d573d6000803e3d6000fd5b505050506040513d608081101561208357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050935050925092505b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561210c57600080fd5b505af4158015612120573d6000803e3d6000fd5b505050506040513d602081101561213657600080fd5b810190808051906020019092919050505080156121535750888211155b801561215e57508184105b1561229d576121838261217c896009546138cd90919063ffffffff16565b8887613953565b95508193506000601160008481526020019081526020016000205490506121c56121b6828661382c90919063ffffffff16565b8961382c90919063ffffffff16565b975060008214156121d6575061229d565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561223057600080fd5b505af4158015612244573d6000803e3d6000fd5b505050506040513d608081101561225a57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509050809450819550829650505050506120ba565b6122bd896122b6896009546138cd90919063ffffffff16565b8887613953565b955061232b600c60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461231d8861230f8e613884565b6138cd90919063ffffffff16565b613a1a90919063ffffffff16565b975050505050505050612345565b61234283613884565b90505b92915050565b600080600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091876040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156123ab57600080fd5b505af41580156123bf573d6000803e3d6000fd5b505050506040513d60808110156123d557600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508094508195508296508397505050505061243a60116000858152602001908152602001600020548561382c90919063ffffffff16565b93509193509193565b600061246c82600080868152602001908152602001600020600001613a6490919063ffffffff16565b905092915050565b600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163d345690e90916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156124c957600080fd5b505af41580156124dd573d6000803e3d6000fd5b505050506040513d60208110156124f357600080fd5b810190808051906020019092919050505090506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561256257600080fd5b505af4158015612576573d6000803e3d6000fd5b505050506040513d608081101561258c57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050505050915050809250505090565b60006125f182600080868152602001908152602001600020600001613a7e90919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126915780601f1061266657610100808354040283529160200191612691565b820191906000526020600020905b81548152906001019060200180831161267457829003601f168201915b5050505050905090565b61272a7319e1d1071eff086649e7dddf634d0f1490cb8fd56327810b6e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156126e257600080fd5b505af41580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b810190808051906020019092919050505061272561302c565b6125c8565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420616e206275726e657200000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4275726e2066726f6d207a65726f20616464726573730000000000000000000081525060200191505060405180910390fd5b612847612932565b6128508261352d565b61285a8282613aae565b5050565b6000801b81565b600061292861287261302c565b8461292385604051806060016040528060258152602001614491602591396002600061289c61302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b613034565b6001905092915050565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561298657600080fd5b505af415801561299a573d6000803e3d6000fd5b505050506040513d60208110156129b057600080fd5b810190808051906020019092919050505090506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015612a2257600080fd5b505af4158015612a36573d6000803e3d6000fd5b505050506040513d6080811015612a4c57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050935050925092506000600190505b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612adb57600080fd5b505af4158015612aef573d6000803e3d6000fd5b505050506040513d6020811015612b0557600080fd5b81019080805190602001909291905050508015612b225750428311155b8015612b2f575082600a54105b15612d1157612b5a83612b4f6008546009546138cd90919063ffffffff16565b600b54600a54613953565b600b8190555082600a81905550600060116000858152602001908152602001600020549050612ba6612b95828761382c90919063ffffffff16565b60085461382c90919063ffffffff16565b6008819055506000831415612bbb5750612d11565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163613cb0f59091856040518363ffffffff1660e01b8152600401808381526020018281526020019250505060006040518083038186803b158015612c1557600080fd5b505af4158015612c29573d6000803e3d6000fd5b50505050600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091856040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015612c8757600080fd5b505af4158015612c9b573d6000803e3d6000fd5b505050506040513d6080811015612cb157600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509050809550819650829750505050600754821415612d0357505050505050612d4a565b508080600101915050612a89565b50612d3842612d2d6008546009546138cd90919063ffffffff16565b600b54600a54613953565b600b8190555042600a81905550505050505b565b6000612d60612d5961302c565b848461322b565b6001905092915050565b6000600954905090565b6000600a54905090565b6000600b54905090565b6000612da7600080848152602001908152602001600020600001613c74565b9050919050565b612dd460008084815260200190815260200160002060020154612dcf61302c565b6125c8565b612e29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806143676030913960400191505060405180910390fd5b612e338282613412565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600754905090565b612f577319e1d1071eff086649e7dddf634d0f1490cb8fd563f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b158015612f0f57600080fd5b505af4158015612f23573d6000803e3d6000fd5b505050506040513d6020811015612f3957600080fd5b8101908080519060200190929190505050612f5261302c565b6125c8565b612fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f7420616e2061646d696e0000000000000000000081525060200191505060405180910390fd5b60008111613022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144016024913960400191505060405180910390fd5b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061446d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061431f6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b613233612932565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613271576132708361352d565b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132af576132ae8261352d565b5b6132ba838383613c89565b505050565b600083831115829061336c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613331578082015181840152602081019050613316565b50505050905090810190601f16801561335e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6133a681600080858152602001908152602001600020600001613f4e90919063ffffffff16565b1561340e576133b361302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61343981600080858152602001908152602001600020600001613f7e90919063ffffffff16565b156134a15761344661302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015613523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061353882613884565b90506000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156136195760006135ea600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135dc600b54856138cd90919063ffffffff16565b613a1a90919063ffffffff16565b90506000613601838361382c90919063ffffffff16565b905060008114613616576136158482613663565b5b50505b600b54600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613706576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61371260008383613fae565b613727816003546134a590919063ffffffff16565b60038190555061377f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061386e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132bf565b905092915050565b613880828261337f565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000808314156138e0576000905061394d565b60008284029050828482816138f157fe5b0414613948576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143976021913960400191505060405180910390fd5b809150505b92915050565b60008061395e610cbc565b141561396c57829050613a12565b6000613981838761382c90919063ffffffff16565b9050603c8110156139955783915050613a12565b60006139aa82876138cd90919063ffffffff16565b90506000613a09866139fb6139bd610cbc565b6139ed6a1a1601fc4ea7109e0000006139df8c896138cd90919063ffffffff16565b613a1a90919063ffffffff16565b613a1a90919063ffffffff16565b6134a590919063ffffffff16565b90508093505050505b949350505050565b6000613a5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fb3565b905092915050565b6000613a738360000183614079565b60001c905092915050565b6000613aa6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6140fc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e06021913960400191505060405180910390fd5b613b4082600083613fae565b613bac816040518060600160405280602281526020016142fd60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c048160035461382c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000613c828260000161411f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144256025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142ab6023913960400191505060405180910390fd5b613da0838383613fae565b613e0c8160405180606001604052806026815260200161434160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ea181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000613f76836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614130565b905092915050565b6000613fa6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6141a0565b905092915050565b505050565b6000808311829061405f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614024578082015181840152602081019050614009565b50505050905090810190601f1680156140515780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161406b57fe5b049050809150509392505050565b6000818360000180549050116140da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142896022913960400191505060405180910390fd5b8260000182815481106140e957fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600061413c83836140fc565b61419557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061419a565b600090505b92915050565b6000808360010160008481526020019081526020016000205490506000811461427c57600060018203905060006001866000018054905003905060008660000182815481106141eb57fe5b906000526020600020015490508087600001848154811061420857fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061424057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614282565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737354686520616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420616c6c6f77656420746869732066756e6374696f6e45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212208ee722e1241eb0b955f07ae019ceda60a6c9c01daf079dcaf1874fd1c5b84ec064736f6c63430006030033000000000000000000000000c20d23c95deb1d5743af6109da5173955cb7d456
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806389e36ff111610125578063a9059cbb116100ad578063ca15c8731161007c578063ca15c87314610a9e578063d547741f14610ae0578063dd62ed3e14610b2e578063f65d6b4914610ba6578063fb79d9b714610bc45761021c565b8063a9059cbb146109de578063b2552fc414610a44578063b95b92a314610a62578063ba68018a14610a805761021c565b806395d89b41116100f457806395d89b411461087f5780639dc29fac14610902578063a217fddf14610950578063a457c2d71461096e578063a6afed95146109d45761021c565b806389e36ff11461072c5780639010d07c1461078357806390818a41146107fb57806391d14854146108195761021c565b806336568abe116101a85780635bc2cc79116101775780635bc2cc79146105d85780636ab531d51461061057806370a082311461062e57806375cb2672146106865780637f795bc3146106ca5761021c565b806336568abe1461049e57806339509351146104ec57806340c10f191461055257806346451877146105a05761021c565b806323b872dd116101ef57806323b872dd14610346578063248a9ca3146103cc5780632f2ff15d1461040e578063313ce5671461045c578063320d97e2146104805761021c565b806306fdde0314610221578063095ea7b3146102a45780630a228d511461030a57806318160ddd14610328575b600080fd5b610229610bf2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026957808201518184015260208101905061024e565b50505050905090810190601f1680156102965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f0600480360360408110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c94565b604051808215151515815260200191505060405180910390f35b610312610cb2565b6040518082815260200191505060405180910390f35b610330610cbc565b6040518082815260200191505060405180910390f35b6103b26004803603606081101561035c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc6565b604051808215151515815260200191505060405180910390f35b6103f8600480360360208110156103e257600080fd5b8101908080359060200190929190505050610d9f565b6040518082815260200191505060405180910390f35b61045a6004803603604081101561042457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbe565b005b610464610e47565b604051808260ff1660ff16815260200191505060405180910390f35b610488610e5e565b6040518082815260200191505060405180910390f35b6104ea600480360360408110156104b457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ef2565b005b6105386004803603604081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f8b565b604051808215151515815260200191505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103e565b005b6105d6600480360360408110156105b657600080fd5b810190808035906020019092919080359060200190929190505050611201565b005b61060e600480360360408110156105ee57600080fd5b810190808035906020019092919080359060200190929190505050611409565b005b610618611ad4565b6040518082815260200191505060405180910390f35b6106706004803603602081101561064457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c28565b6040518082815260200191505060405180910390f35b6106c86004803603602081101561069c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3b565b005b610716600480360360408110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ef7565b6040518082815260200191505060405180910390f35b6107586004803603602081101561074257600080fd5b810190808035906020019092919050505061234b565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390f35b6107b96004803603604081101561079957600080fd5b810190808035906020019092919080359060200190929190505050612443565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610803612474565b6040518082815260200191505060405180910390f35b6108656004803603604081101561082f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c8565b604051808215151515815260200191505060405180910390f35b6108876125f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108c75780820151818401526020810190506108ac565b50505050905090810190601f1680156108f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61094e6004803603604081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061269b565b005b61095861285e565b6040518082815260200191505060405180910390f35b6109ba6004803603604081101561098457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612865565b604051808215151515815260200191505060405180910390f35b6109dc612932565b005b610a2a600480360360408110156109f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612d4c565b604051808215151515815260200191505060405180910390f35b610a4c612d6a565b6040518082815260200191505060405180910390f35b610a6a612d74565b6040518082815260200191505060405180910390f35b610a88612d7e565b6040518082815260200191505060405180910390f35b610aca60048036036020811015610ab457600080fd5b8101908080359060200190929190505050612d88565b6040518082815260200191505060405180910390f35b610b2c60048036036040811015610af657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dae565b005b610b9060048036036040811015610b4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e37565b6040518082815260200191505060405180910390f35b610bae612ebe565b6040518082815260200191505060405180910390f35b610bf060048036036020811015610bda57600080fd5b8101908080359060200190929190505050612ec8565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b5050505050905090565b6000610ca8610ca161302c565b8484613034565b6001905092915050565b6000600854905090565b6000600354905090565b6000610cd384848461322b565b610d9484610cdf61302c565b610d8f856040518060600160405280602881526020016143b860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d4561302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b613034565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b610de460008084815260200190815260200160002060020154610ddf61302c565b6125c8565b610e39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806142ce602f913960400191505060405180910390fd5b610e43828261337f565b5050565b6000600660009054906101000a900460ff16905090565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610eb257600080fd5b505af4158015610ec6573d6000803e3d6000fd5b505050506040513d6020811015610edc57600080fd5b8101908080519060200190929190505050905090565b610efa61302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806144b6602f913960400191505060405180910390fd5b610f878282613412565b5050565b6000611034610f9861302c565b8461102f8560026000610fa961302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b613034565b6001905092915050565b6110cd7319e1d1071eff086649e7dddf634d0f1490cb8fd563075461726040518163ffffffff1660e01b815260040160206040518083038186803b15801561108557600080fd5b505af4158015611099573d6000803e3d6000fd5b505050506040513d60208110156110af57600080fd5b81019080805190602001909291905050506110c861302c565b6125c8565b61113f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420616e206d696e74657200000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d696e7420746f207a65726f206164647265737300000000000000000000000081525060200191505060405180910390fd5b6111ea612932565b6111f38261352d565b6111fd8282613663565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661124261302c565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061444a6023913960400191505060405180910390fd5b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561130057600080fd5b505af4158015611314573d6000803e3d6000fd5b505050506040513d602081101561132a57600080fd5b81019080805190602001909291905050506113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f546865206c69737420646f6573206e6f7420657869737400000000000000000081525060200191505060405180910390fd5b6113c28260085461382c90919063ffffffff16565b6008819055506113ee8260116000848152602001908152602001600020546134a590919063ffffffff16565b60116000838152602001908152602001600020819055505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144a61302c565b73ffffffffffffffffffffffffffffffffffffffff16146114b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061444a6023913960400191505060405180910390fd5b6114cb826008546134a590919063ffffffff16565b600881905550600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561152357600080fd5b505af4158015611537573d6000803e3d6000fd5b505050506040513d602081101561154d57600080fd5b81019080805190602001909291905050506115e157600d735b6537a722a9c65f9ebe7559936a07ffc257ad11633c228ca3909184846040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b1580156115c457600080fd5b505af41580156115d8573d6000803e3d6000fd5b50505050611ad0565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163d345690e90916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561163557600080fd5b505af4158015611649573d6000803e3d6000fd5b505050506040513d602081101561165f57600080fd5b810190808051906020019092919050505090506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156116d157600080fd5b505af41580156116e5573d6000803e3d6000fd5b505050506040513d60808110156116fb57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919050505093509350935050848310156117bc57600d735b6537a722a9c65f9ebe7559936a07ffc257ad11633c228ca3909188886040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b15801561179b57600080fd5b505af41580156117af573d6000803e3d6000fd5b5050505050505050611ad0565b5b600115611acb578483141561184b57600d735b6537a722a9c65f9ebe7559936a07ffc257ad116316eb34ca909186896040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060006040518083038186803b15801561182e57600080fd5b505af4158015611842573d6000803e3d6000fd5b50505050611acb565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561189d57600080fd5b505af41580156118b1573d6000803e3d6000fd5b505050506040513d60208110156118c757600080fd5b8101908080519060200190929190505050841480156118e557508483115b1561197157600d735b6537a722a9c65f9ebe7559936a07ffc257ad11632ba5c9fa90918689896040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060006040518083038186803b15801561195457600080fd5b505af4158015611968573d6000803e3d6000fd5b50505050611acb565b819350600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156119ce57600080fd5b505af41580156119e2573d6000803e3d6000fd5b505050506040513d60808110156119f857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509091925080935081945082955050505084831015611ac657600d735b6537a722a9c65f9ebe7559936a07ffc257ad11632ba5c9fa90918389896040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060006040518083038186803b158015611aa957600080fd5b505af4158015611abd573d6000803e3d6000fd5b50505050611acb565b6117bd565b505050505b5050565b600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611b2957600080fd5b505af4158015611b3d573d6000803e3d6000fd5b505050506040513d6020811015611b5357600080fd5b810190808051906020019092919050505090506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015611bc257600080fd5b505af4158015611bd6573d6000803e3d6000fd5b505050506040513d6080811015611bec57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050505050915050809250505090565b6000611c348242611ef7565b9050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c7c61302c565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f75736572206e6f7420616c6c6f77656420746f20696e697469616c697a65000081525060200191505060405180910390fd5b600660019054906101000a900460ff1615611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f636f6e747261637420616c726561647920696e697469616c697a65640000000081525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611e517319e1d1071eff086649e7dddf634d0f1490cb8fd563075461726040518163ffffffff1660e01b815260040160206040518083038186803b158015611e1057600080fd5b505af4158015611e24573d6000803e3d6000fd5b505050506040513d6020811015611e3a57600080fd5b810190808051906020019092919050505082613876565b611ed97319e1d1071eff086649e7dddf634d0f1490cb8fd56327810b6e6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e9857600080fd5b505af4158015611eac573d6000803e3d6000fd5b505050506040513d6020811015611ec257600080fd5b810190808051906020019092919050505082613876565b6001600660016101000a81548160ff02191690831515021790555050565b600080611f0384613884565b118015611f4f57506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561233957600060085490506000600b5490506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611fb657600080fd5b505af4158015611fca573d6000803e3d6000fd5b505050506040513d6020811015611fe057600080fd5b810190808051906020019092919050505090506000600a5490506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091876040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561205957600080fd5b505af415801561206d573d6000803e3d6000fd5b505050506040513d608081101561208357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050935050925092505b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561210c57600080fd5b505af4158015612120573d6000803e3d6000fd5b505050506040513d602081101561213657600080fd5b810190808051906020019092919050505080156121535750888211155b801561215e57508184105b1561229d576121838261217c896009546138cd90919063ffffffff16565b8887613953565b95508193506000601160008481526020019081526020016000205490506121c56121b6828661382c90919063ffffffff16565b8961382c90919063ffffffff16565b975060008214156121d6575061229d565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561223057600080fd5b505af4158015612244573d6000803e3d6000fd5b505050506040513d608081101561225a57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509050809450819550829650505050506120ba565b6122bd896122b6896009546138cd90919063ffffffff16565b8887613953565b955061232b600c60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461231d8861230f8e613884565b6138cd90919063ffffffff16565b613a1a90919063ffffffff16565b975050505050505050612345565b61234283613884565b90505b92915050565b600080600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091876040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b1580156123ab57600080fd5b505af41580156123bf573d6000803e3d6000fd5b505050506040513d60808110156123d557600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508094508195508296508397505050505061243a60116000858152602001908152602001600020548561382c90919063ffffffff16565b93509193509193565b600061246c82600080868152602001908152602001600020600001613a6490919063ffffffff16565b905092915050565b600080600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163d345690e90916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156124c957600080fd5b505af41580156124dd573d6000803e3d6000fd5b505050506040513d60208110156124f357600080fd5b810190808051906020019092919050505090506000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091846040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b15801561256257600080fd5b505af4158015612576573d6000803e3d6000fd5b505050506040513d608081101561258c57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050505050915050809250505090565b60006125f182600080868152602001908152602001600020600001613a7e90919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126915780601f1061266657610100808354040283529160200191612691565b820191906000526020600020905b81548152906001019060200180831161267457829003601f168201915b5050505050905090565b61272a7319e1d1071eff086649e7dddf634d0f1490cb8fd56327810b6e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156126e257600080fd5b505af41580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b810190808051906020019092919050505061272561302c565b6125c8565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f7420616e206275726e657200000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4275726e2066726f6d207a65726f20616464726573730000000000000000000081525060200191505060405180910390fd5b612847612932565b6128508261352d565b61285a8282613aae565b5050565b6000801b81565b600061292861287261302c565b8461292385604051806060016040528060258152602001614491602591396002600061289c61302c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b613034565b6001905092915050565b6000600d735b6537a722a9c65f9ebe7559936a07ffc257ad11636c2f391790916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561298657600080fd5b505af415801561299a573d6000803e3d6000fd5b505050506040513d60208110156129b057600080fd5b810190808051906020019092919050505090506000806000600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091866040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015612a2257600080fd5b505af4158015612a36573d6000803e3d6000fd5b505050506040513d6080811015612a4c57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050935050925092506000600190505b600d735b6537a722a9c65f9ebe7559936a07ffc257ad116320513ac990916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612adb57600080fd5b505af4158015612aef573d6000803e3d6000fd5b505050506040513d6020811015612b0557600080fd5b81019080805190602001909291905050508015612b225750428311155b8015612b2f575082600a54105b15612d1157612b5a83612b4f6008546009546138cd90919063ffffffff16565b600b54600a54613953565b600b8190555082600a81905550600060116000858152602001908152602001600020549050612ba6612b95828761382c90919063ffffffff16565b60085461382c90919063ffffffff16565b6008819055506000831415612bbb5750612d11565b600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163613cb0f59091856040518363ffffffff1660e01b8152600401808381526020018281526020019250505060006040518083038186803b158015612c1557600080fd5b505af4158015612c29573d6000803e3d6000fd5b50505050600d735b6537a722a9c65f9ebe7559936a07ffc257ad1163ab9b94c79091856040518363ffffffff1660e01b8152600401808381526020018281526020019250505060806040518083038186803b158015612c8757600080fd5b505af4158015612c9b573d6000803e3d6000fd5b505050506040513d6080811015612cb157600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050509050809550819650829750505050600754821415612d0357505050505050612d4a565b508080600101915050612a89565b50612d3842612d2d6008546009546138cd90919063ffffffff16565b600b54600a54613953565b600b8190555042600a81905550505050505b565b6000612d60612d5961302c565b848461322b565b6001905092915050565b6000600954905090565b6000600a54905090565b6000600b54905090565b6000612da7600080848152602001908152602001600020600001613c74565b9050919050565b612dd460008084815260200190815260200160002060020154612dcf61302c565b6125c8565b612e29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806143676030913960400191505060405180910390fd5b612e338282613412565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600754905090565b612f577319e1d1071eff086649e7dddf634d0f1490cb8fd563f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b158015612f0f57600080fd5b505af4158015612f23573d6000803e3d6000fd5b505050506040513d6020811015612f3957600080fd5b8101908080519060200190929190505050612f5261302c565b6125c8565b612fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f7420616e2061646d696e0000000000000000000081525060200191505060405180910390fd5b60008111613022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144016024913960400191505060405180910390fd5b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061446d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061431f6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b613233612932565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613271576132708361352d565b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132af576132ae8261352d565b5b6132ba838383613c89565b505050565b600083831115829061336c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613331578082015181840152602081019050613316565b50505050905090810190601f16801561335e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6133a681600080858152602001908152602001600020600001613f4e90919063ffffffff16565b1561340e576133b361302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61343981600080858152602001908152602001600020600001613f7e90919063ffffffff16565b156134a15761344661302c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015613523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061353882613884565b90506000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156136195760006135ea600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135dc600b54856138cd90919063ffffffff16565b613a1a90919063ffffffff16565b90506000613601838361382c90919063ffffffff16565b905060008114613616576136158482613663565b5b50505b600b54600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613706576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61371260008383613fae565b613727816003546134a590919063ffffffff16565b60038190555061377f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061386e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132bf565b905092915050565b613880828261337f565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000808314156138e0576000905061394d565b60008284029050828482816138f157fe5b0414613948576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143976021913960400191505060405180910390fd5b809150505b92915050565b60008061395e610cbc565b141561396c57829050613a12565b6000613981838761382c90919063ffffffff16565b9050603c8110156139955783915050613a12565b60006139aa82876138cd90919063ffffffff16565b90506000613a09866139fb6139bd610cbc565b6139ed6a1a1601fc4ea7109e0000006139df8c896138cd90919063ffffffff16565b613a1a90919063ffffffff16565b613a1a90919063ffffffff16565b6134a590919063ffffffff16565b90508093505050505b949350505050565b6000613a5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fb3565b905092915050565b6000613a738360000183614079565b60001c905092915050565b6000613aa6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6140fc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e06021913960400191505060405180910390fd5b613b4082600083613fae565b613bac816040518060600160405280602281526020016142fd60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c048160035461382c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000613c828260000161411f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144256025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142ab6023913960400191505060405180910390fd5b613da0838383613fae565b613e0c8160405180606001604052806026815260200161434160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132bf9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ea181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134a590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000613f76836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614130565b905092915050565b6000613fa6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6141a0565b905092915050565b505050565b6000808311829061405f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614024578082015181840152602081019050614009565b50505050905090810190601f1680156140515780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161406b57fe5b049050809150509392505050565b6000818360000180549050116140da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142896022913960400191505060405180910390fd5b8260000182815481106140e957fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600061413c83836140fc565b61419557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061419a565b600090505b92915050565b6000808360010160008481526020019081526020016000205490506000811461427c57600060018203905060006001866000018054905003905060008660000182815481106141eb57fe5b906000526020600020015490508087600001848154811061420857fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061424057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614282565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737354686520616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420616c6c6f77656420746869732066756e6374696f6e45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212208ee722e1241eb0b955f07ae019ceda60a6c9c01daf079dcaf1874fd1c5b84ec064736f6c63430006030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c20d23c95deb1d5743af6109da5173955cb7d456
-----Decoded View---------------
Arg [0] : admin (address): 0xc20d23c95DeB1D5743af6109da5173955CB7D456
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c20d23c95deb1d5743af6109da5173955cb7d456
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.