Overview
GLMR Balance
GLMR Value
$0.00Latest 25 from a total of 550 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 9566378 | 71 days ago | IN | 0 GLMR | 0.0071474 | ||||
Approve | 8386913 | 155 days ago | IN | 0 GLMR | 0.02729626 | ||||
Approve | 8297411 | 161 days ago | IN | 0 GLMR | 0.02709 | ||||
Approve | 8255863 | 164 days ago | IN | 0 GLMR | 0.02709 | ||||
Approve | 8244616 | 165 days ago | IN | 0 GLMR | 0.02754814 | ||||
Approve | 7607206 | 210 days ago | IN | 0 GLMR | 0.027026 | ||||
Approve | 7556291 | 213 days ago | IN | 0 GLMR | 0.013545 | ||||
Approve | 7511245 | 217 days ago | IN | 0 GLMR | 0.0136211 | ||||
Transfer | 6384849 | 311 days ago | IN | 0 GLMR | 0.00698994 | ||||
Approve | 6256425 | 329 days ago | IN | 0 GLMR | 0.00742943 | ||||
Approve | 5977305 | 368 days ago | IN | 0 GLMR | 0.00687915 | ||||
Approve | 5836192 | 388 days ago | IN | 0 GLMR | 0.0082055 | ||||
Approve | 5836185 | 388 days ago | IN | 0 GLMR | 0.00827558 | ||||
Approve | 5794426 | 394 days ago | IN | 0 GLMR | 0.00897823 | ||||
Approve | 5794423 | 394 days ago | IN | 0 GLMR | 0.00897165 | ||||
Approve | 5794387 | 394 days ago | IN | 0 GLMR | 0.00897869 | ||||
Approve | 5794379 | 394 days ago | IN | 0 GLMR | 0.00896737 | ||||
Approve | 5794357 | 394 days ago | IN | 0 GLMR | 0.00901677 | ||||
Approve | 5794354 | 394 days ago | IN | 0 GLMR | 0.00901449 | ||||
Approve | 5794341 | 394 days ago | IN | 0 GLMR | 0.00904616 | ||||
Approve | 5794336 | 394 days ago | IN | 0 GLMR | 0.00904214 | ||||
Approve | 5794327 | 394 days ago | IN | 0 GLMR | 0.00906517 | ||||
Approve | 5794324 | 394 days ago | IN | 0 GLMR | 0.00907348 | ||||
Approve | 5794299 | 394 days ago | IN | 0 GLMR | 0.00916148 | ||||
Approve | 5752130 | 400 days ago | IN | 0 GLMR | 0.01004813 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Bepro
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2022-03-22 */ // Sources flattened with hardhat v2.9.1 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File @openzeppelin/contracts/security/[email protected] // // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @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) external view returns (address); /** * @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) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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 { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/utils/structs/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^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; if (lastIndex != toDeleteIndex) { 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] = valueIndex; // Replace lastvalue's index to valueIndex } // 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // 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(uint160(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(uint160(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(uint160(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(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @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 virtual override returns (address) { return _roleMembers[role].at(index); } /** * @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 virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } // File @openzeppelin/contracts/token/ERC20/presets/[email protected] // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/presets/ERC20PresetMinterPauser.sol) pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. * * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._ */ contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol) ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } } // File contracts/Bepro.sol // pragma solidity ^0.8.0; contract Bepro is ERC20PresetMinterPauser { constructor() ERC20PresetMinterPauser('BEPRO Network', 'BEPRO') {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f424550524f204e6574776f726b000000000000000000000000000000000000008152506040518060400160405280600581526020017f424550524f000000000000000000000000000000000000000000000000000000815250818181600590805190602001906200009892919062000413565b508060069080519060200190620000b192919062000413565b5050506000600760006101000a81548160ff021916908315150217905550620000f36000801b620000e76200017d60201b60201c565b6200018560201b60201c565b620001347f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001286200017d60201b60201c565b6200018560201b60201c565b620001757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001696200017d60201b60201c565b6200018560201b60201c565b505062000528565b600033905090565b6200019782826200019b60201b60201c565b5050565b620001b28282620001e360201b62000dfc1760201c565b620001de8160016000858152602001908152602001600020620002d460201b62000edc1790919060201c565b505050565b620001f582826200030c60201b60201c565b620002d057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002756200017d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000304836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200037660201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200038a8383620003f060201b60201c565b620003e5578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620003ea565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200042190620004c3565b90600052602060002090601f01602090048101928262000445576000855562000491565b82601f106200046057805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049057825182559160200191906001019062000473565b5b509050620004a09190620004a4565b5090565b5b80821115620004bf576000816000905550600101620004a5565b5090565b60006002820490506001821680620004dc57607f821691505b60208210811415620004f357620004f2620004f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6131a180620005386000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de9190612363565b6105b5565b6040516101f09190612bad565b60405180910390f35b61020161062f565b60405161020e9190612be3565b60405180910390f35b610231600480360381019061022c9190612286565b6106c1565b60405161023e9190612bad565b60405180910390f35b61024f6106e4565b60405161025c9190612e45565b60405180910390f35b61027f600480360381019061027a9190612237565b6106ee565b60405161028c9190612bad565b60405180910390f35b6102af60048036038101906102aa91906122c2565b61071d565b6040516102bc9190612bc8565b60405180910390f35b6102df60048036038101906102da91906122eb565b61073c565b005b6102e9610765565b6040516102f69190612e60565b60405180910390f35b610319600480360381019061031491906122eb565b61076e565b005b61033560048036038101906103309190612286565b6107f1565b6040516103429190612bad565b60405180910390f35b61035361089b565b005b61036f600480360381019061036a9190612286565b610915565b005b61038b6004803603810190610386919061238c565b610993565b005b6103956109a7565b6040516103a29190612bad565b60405180910390f35b6103c560048036038101906103c091906121d2565b6109be565b6040516103d29190612e45565b60405180910390f35b6103f560048036038101906103f09190612286565b610a07565b005b6103ff610a27565b005b61041b60048036038101906104169190612327565b610aa1565b6040516104289190612b92565b60405180910390f35b61044b600480360381019061044691906122eb565b610ad0565b6040516104589190612bad565b60405180910390f35b610469610b3a565b6040516104769190612be3565b60405180910390f35b610487610bcc565b6040516104949190612bc8565b60405180910390f35b6104b760048036038101906104b29190612286565b610bd3565b6040516104c49190612bad565b60405180910390f35b6104e760048036038101906104e29190612286565b610cbd565b6040516104f49190612bad565b60405180910390f35b610517600480360381019061051291906122c2565b610ce0565b6040516105249190612e45565b60405180910390f35b610535610d04565b6040516105429190612bc8565b60405180910390f35b610565600480360381019061056091906122eb565b610d28565b005b610581600480360381019061057c91906121fb565b610d51565b60405161058e9190612e45565b60405180910390f35b61059f610dd8565b6040516105ac9190612bc8565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f0c565b5b9050919050565b60606005805461063e9061306e565b80601f016020809104026020016040519081016040528092919081815260200182805461066a9061306e565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b6000806106cc610f86565b90506106d9818585610f8e565b600191505092915050565b6000600454905090565b6000806106f9610f86565b9050610706858285611159565b6107118585856111e5565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107458261071d565b61075681610751610f86565b611469565b6107608383611506565b505050565b60006012905090565b610776610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da90612de5565b60405180910390fd5b6107ed828261153a565b5050565b6000806107fc610f86565b9050610890818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088b9190612ea2565b610f8e565b600191505092915050565b6108cc7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c7610f86565b610ad0565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612c85565b60405180910390fd5b61091361156e565b565b6109467f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610941610f86565b610ad0565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612d25565b60405180910390fd5b61098f8282611610565b5050565b6109a461099e610f86565b82611771565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a1982610a13610f86565b83611159565b610a238282611771565b5050565b610a587f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a53610f86565b610ad0565b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612da5565b60405180910390fd5b610a9f61194a565b565b6000610ac882600160008681526020019081526020016000206119ed90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610b499061306e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b759061306e565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b6000801b81565b600080610bde610f86565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90612dc5565b60405180910390fd5b610cb18286868403610f8e565b60019250505092915050565b600080610cc8610f86565b9050610cd58185856111e5565b600191505092915050565b6000610cfd60016000848152602001908152602001600020611a07565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d318261071d565b610d4281610d3d610f86565b611469565b610d4c838361153a565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610e068282610ad0565b610ed857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7d610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f04836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a1c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f7f5750610f7e82611a8c565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590612d85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612ca5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114c9190612e45565b60405180910390a3505050565b60006111658484610d51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111df57818110156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612cc5565b60405180910390fd5b6111de8484848403610f8e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612c25565b60405180910390fd5b6112d0838383611af6565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612ce5565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ec9190612ea2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114509190612e45565b60405180910390a3611463848484611b06565b50505050565b6114738282610ad0565b611502576114988173ffffffffffffffffffffffffffffffffffffffff166014611b0b565b6114a68360001c6020611b0b565b6040516020016114b7929190612b58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f99190612be3565b60405180910390fd5b5050565b6115108282610dfc565b6115358160016000858152602001908152602001600020610edc90919063ffffffff16565b505050565b6115448282611e05565b6115698160016000858152602001908152602001600020611ee690919063ffffffff16565b505050565b6115766109a7565b6115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612c45565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115f9610f86565b6040516116069190612b92565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612e05565b60405180910390fd5b61168c60008383611af6565b806004600082825461169e9190612ea2565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f49190612ea2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117599190612e45565b60405180910390a361176d60008383611b06565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890612d45565b60405180910390fd5b6117ed82600083611af6565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612c65565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546118cc9190612f52565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119319190612e45565b60405180910390a361194583600084611b06565b505050565b6119526109a7565b15611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612d05565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119d6610f86565b6040516119e39190612b92565b60405180910390a1565b60006119fc8360000183611f16565b60001c905092915050565b6000611a1582600001611f67565b9050919050565b6000611a288383611f78565b611a81578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a86565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b01838383611f9b565b505050565b505050565b606060006002836002611b1e9190612ef8565b611b289190612ea2565b67ffffffffffffffff811115611b67577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b995781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611cc19190612ef8565b611ccb9190612ea2565b90505b6001811115611db7577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611d33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d70577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611db090613044565b9050611cce565b5060008414611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612c05565b60405180910390fd5b8091505092915050565b611e0f8282610ad0565b15611ee257600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e87610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611f0e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611ff3565b905092915050565b6000826000018281548110611f54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611fa6838383612179565b611fae6109a7565b15611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590612e25565b60405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461216d5760006001826120259190612f52565b905060006001866000018054905061203d9190612f52565b90508181146120f8576000866000018281548110612084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106120ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612173565b60009150505b92915050565b505050565b60008135905061218d8161310f565b92915050565b6000813590506121a281613126565b92915050565b6000813590506121b78161313d565b92915050565b6000813590506121cc81613154565b92915050565b6000602082840312156121e457600080fd5b60006121f28482850161217e565b91505092915050565b6000806040838503121561220e57600080fd5b600061221c8582860161217e565b925050602061222d8582860161217e565b9150509250929050565b60008060006060848603121561224c57600080fd5b600061225a8682870161217e565b935050602061226b8682870161217e565b925050604061227c868287016121bd565b9150509250925092565b6000806040838503121561229957600080fd5b60006122a78582860161217e565b92505060206122b8858286016121bd565b9150509250929050565b6000602082840312156122d457600080fd5b60006122e284828501612193565b91505092915050565b600080604083850312156122fe57600080fd5b600061230c85828601612193565b925050602061231d8582860161217e565b9150509250929050565b6000806040838503121561233a57600080fd5b600061234885828601612193565b9250506020612359858286016121bd565b9150509250929050565b60006020828403121561237557600080fd5b6000612383848285016121a8565b91505092915050565b60006020828403121561239e57600080fd5b60006123ac848285016121bd565b91505092915050565b6123be81612f86565b82525050565b6123cd81612f98565b82525050565b6123dc81612fa4565b82525050565b60006123ed82612e7b565b6123f78185612e86565b9350612407818560208601613011565b612410816130fe565b840191505092915050565b600061242682612e7b565b6124308185612e97565b9350612440818560208601613011565b80840191505092915050565b6000612459602083612e86565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612499602383612e86565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124ff601483612e86565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061253f602283612e86565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125a5603983612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b600061260b602283612e86565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612671601d83612e86565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006126b1602683612e86565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612717601083612e86565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612757603683612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b60006127bd602183612e86565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612823602583612e86565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612889602483612e86565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128ef603783612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b6000612955601783612e97565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000612995602583612e86565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129fb601183612e97565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000612a3b602f83612e86565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000612aa1601f83612e86565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612ae1602a83612e86565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b612b4381612ffa565b82525050565b612b5281613004565b82525050565b6000612b6382612948565b9150612b6f828561241b565b9150612b7a826129ee565b9150612b86828461241b565b91508190509392505050565b6000602082019050612ba760008301846123b5565b92915050565b6000602082019050612bc260008301846123c4565b92915050565b6000602082019050612bdd60008301846123d3565b92915050565b60006020820190508181036000830152612bfd81846123e2565b905092915050565b60006020820190508181036000830152612c1e8161244c565b9050919050565b60006020820190508181036000830152612c3e8161248c565b9050919050565b60006020820190508181036000830152612c5e816124f2565b9050919050565b60006020820190508181036000830152612c7e81612532565b9050919050565b60006020820190508181036000830152612c9e81612598565b9050919050565b60006020820190508181036000830152612cbe816125fe565b9050919050565b60006020820190508181036000830152612cde81612664565b9050919050565b60006020820190508181036000830152612cfe816126a4565b9050919050565b60006020820190508181036000830152612d1e8161270a565b9050919050565b60006020820190508181036000830152612d3e8161274a565b9050919050565b60006020820190508181036000830152612d5e816127b0565b9050919050565b60006020820190508181036000830152612d7e81612816565b9050919050565b60006020820190508181036000830152612d9e8161287c565b9050919050565b60006020820190508181036000830152612dbe816128e2565b9050919050565b60006020820190508181036000830152612dde81612988565b9050919050565b60006020820190508181036000830152612dfe81612a2e565b9050919050565b60006020820190508181036000830152612e1e81612a94565b9050919050565b60006020820190508181036000830152612e3e81612ad4565b9050919050565b6000602082019050612e5a6000830184612b3a565b92915050565b6000602082019050612e756000830184612b49565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ead82612ffa565b9150612eb883612ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eed57612eec6130a0565b5b828201905092915050565b6000612f0382612ffa565b9150612f0e83612ffa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4757612f466130a0565b5b828202905092915050565b6000612f5d82612ffa565b9150612f6883612ffa565b925082821015612f7b57612f7a6130a0565b5b828203905092915050565b6000612f9182612fda565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561302f578082015181840152602081019050613014565b8381111561303e576000848401525b50505050565b600061304f82612ffa565b91506000821415613063576130626130a0565b5b600182039050919050565b6000600282049050600182168061308657607f821691505b6020821081141561309a576130996130cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61311881612f86565b811461312357600080fd5b50565b61312f81612fa4565b811461313a57600080fd5b50565b61314681612fae565b811461315157600080fd5b50565b61315d81612ffa565b811461316857600080fd5b5056fea2646970667358221220eaef8f6773103f0422335a7632943ce232dc2d62cc7d4b449d71fc89632d39cf64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de9190612363565b6105b5565b6040516101f09190612bad565b60405180910390f35b61020161062f565b60405161020e9190612be3565b60405180910390f35b610231600480360381019061022c9190612286565b6106c1565b60405161023e9190612bad565b60405180910390f35b61024f6106e4565b60405161025c9190612e45565b60405180910390f35b61027f600480360381019061027a9190612237565b6106ee565b60405161028c9190612bad565b60405180910390f35b6102af60048036038101906102aa91906122c2565b61071d565b6040516102bc9190612bc8565b60405180910390f35b6102df60048036038101906102da91906122eb565b61073c565b005b6102e9610765565b6040516102f69190612e60565b60405180910390f35b610319600480360381019061031491906122eb565b61076e565b005b61033560048036038101906103309190612286565b6107f1565b6040516103429190612bad565b60405180910390f35b61035361089b565b005b61036f600480360381019061036a9190612286565b610915565b005b61038b6004803603810190610386919061238c565b610993565b005b6103956109a7565b6040516103a29190612bad565b60405180910390f35b6103c560048036038101906103c091906121d2565b6109be565b6040516103d29190612e45565b60405180910390f35b6103f560048036038101906103f09190612286565b610a07565b005b6103ff610a27565b005b61041b60048036038101906104169190612327565b610aa1565b6040516104289190612b92565b60405180910390f35b61044b600480360381019061044691906122eb565b610ad0565b6040516104589190612bad565b60405180910390f35b610469610b3a565b6040516104769190612be3565b60405180910390f35b610487610bcc565b6040516104949190612bc8565b60405180910390f35b6104b760048036038101906104b29190612286565b610bd3565b6040516104c49190612bad565b60405180910390f35b6104e760048036038101906104e29190612286565b610cbd565b6040516104f49190612bad565b60405180910390f35b610517600480360381019061051291906122c2565b610ce0565b6040516105249190612e45565b60405180910390f35b610535610d04565b6040516105429190612bc8565b60405180910390f35b610565600480360381019061056091906122eb565b610d28565b005b610581600480360381019061057c91906121fb565b610d51565b60405161058e9190612e45565b60405180910390f35b61059f610dd8565b6040516105ac9190612bc8565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f0c565b5b9050919050565b60606005805461063e9061306e565b80601f016020809104026020016040519081016040528092919081815260200182805461066a9061306e565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b6000806106cc610f86565b90506106d9818585610f8e565b600191505092915050565b6000600454905090565b6000806106f9610f86565b9050610706858285611159565b6107118585856111e5565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107458261071d565b61075681610751610f86565b611469565b6107608383611506565b505050565b60006012905090565b610776610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da90612de5565b60405180910390fd5b6107ed828261153a565b5050565b6000806107fc610f86565b9050610890818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088b9190612ea2565b610f8e565b600191505092915050565b6108cc7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c7610f86565b610ad0565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612c85565b60405180910390fd5b61091361156e565b565b6109467f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610941610f86565b610ad0565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612d25565b60405180910390fd5b61098f8282611610565b5050565b6109a461099e610f86565b82611771565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a1982610a13610f86565b83611159565b610a238282611771565b5050565b610a587f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a53610f86565b610ad0565b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612da5565b60405180910390fd5b610a9f61194a565b565b6000610ac882600160008681526020019081526020016000206119ed90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610b499061306e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b759061306e565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b6000801b81565b600080610bde610f86565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90612dc5565b60405180910390fd5b610cb18286868403610f8e565b60019250505092915050565b600080610cc8610f86565b9050610cd58185856111e5565b600191505092915050565b6000610cfd60016000848152602001908152602001600020611a07565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d318261071d565b610d4281610d3d610f86565b611469565b610d4c838361153a565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610e068282610ad0565b610ed857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7d610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f04836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a1c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f7f5750610f7e82611a8c565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590612d85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612ca5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114c9190612e45565b60405180910390a3505050565b60006111658484610d51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111df57818110156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612cc5565b60405180910390fd5b6111de8484848403610f8e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612c25565b60405180910390fd5b6112d0838383611af6565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612ce5565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ec9190612ea2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114509190612e45565b60405180910390a3611463848484611b06565b50505050565b6114738282610ad0565b611502576114988173ffffffffffffffffffffffffffffffffffffffff166014611b0b565b6114a68360001c6020611b0b565b6040516020016114b7929190612b58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f99190612be3565b60405180910390fd5b5050565b6115108282610dfc565b6115358160016000858152602001908152602001600020610edc90919063ffffffff16565b505050565b6115448282611e05565b6115698160016000858152602001908152602001600020611ee690919063ffffffff16565b505050565b6115766109a7565b6115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612c45565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115f9610f86565b6040516116069190612b92565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612e05565b60405180910390fd5b61168c60008383611af6565b806004600082825461169e9190612ea2565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f49190612ea2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117599190612e45565b60405180910390a361176d60008383611b06565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890612d45565b60405180910390fd5b6117ed82600083611af6565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612c65565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546118cc9190612f52565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119319190612e45565b60405180910390a361194583600084611b06565b505050565b6119526109a7565b15611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612d05565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119d6610f86565b6040516119e39190612b92565b60405180910390a1565b60006119fc8360000183611f16565b60001c905092915050565b6000611a1582600001611f67565b9050919050565b6000611a288383611f78565b611a81578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a86565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b01838383611f9b565b505050565b505050565b606060006002836002611b1e9190612ef8565b611b289190612ea2565b67ffffffffffffffff811115611b67577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b995781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611cc19190612ef8565b611ccb9190612ea2565b90505b6001811115611db7577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611d33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d70577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611db090613044565b9050611cce565b5060008414611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612c05565b60405180910390fd5b8091505092915050565b611e0f8282610ad0565b15611ee257600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e87610f86565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611f0e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611ff3565b905092915050565b6000826000018281548110611f54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611fa6838383612179565b611fae6109a7565b15611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590612e25565b60405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461216d5760006001826120259190612f52565b905060006001866000018054905061203d9190612f52565b90508181146120f8576000866000018281548110612084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106120ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612173565b60009150505b92915050565b505050565b60008135905061218d8161310f565b92915050565b6000813590506121a281613126565b92915050565b6000813590506121b78161313d565b92915050565b6000813590506121cc81613154565b92915050565b6000602082840312156121e457600080fd5b60006121f28482850161217e565b91505092915050565b6000806040838503121561220e57600080fd5b600061221c8582860161217e565b925050602061222d8582860161217e565b9150509250929050565b60008060006060848603121561224c57600080fd5b600061225a8682870161217e565b935050602061226b8682870161217e565b925050604061227c868287016121bd565b9150509250925092565b6000806040838503121561229957600080fd5b60006122a78582860161217e565b92505060206122b8858286016121bd565b9150509250929050565b6000602082840312156122d457600080fd5b60006122e284828501612193565b91505092915050565b600080604083850312156122fe57600080fd5b600061230c85828601612193565b925050602061231d8582860161217e565b9150509250929050565b6000806040838503121561233a57600080fd5b600061234885828601612193565b9250506020612359858286016121bd565b9150509250929050565b60006020828403121561237557600080fd5b6000612383848285016121a8565b91505092915050565b60006020828403121561239e57600080fd5b60006123ac848285016121bd565b91505092915050565b6123be81612f86565b82525050565b6123cd81612f98565b82525050565b6123dc81612fa4565b82525050565b60006123ed82612e7b565b6123f78185612e86565b9350612407818560208601613011565b612410816130fe565b840191505092915050565b600061242682612e7b565b6124308185612e97565b9350612440818560208601613011565b80840191505092915050565b6000612459602083612e86565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612499602383612e86565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124ff601483612e86565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061253f602283612e86565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125a5603983612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b600061260b602283612e86565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612671601d83612e86565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006126b1602683612e86565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612717601083612e86565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612757603683612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b60006127bd602183612e86565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612823602583612e86565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612889602483612e86565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128ef603783612e86565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b6000612955601783612e97565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000612995602583612e86565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129fb601183612e97565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000612a3b602f83612e86565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000612aa1601f83612e86565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612ae1602a83612e86565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b612b4381612ffa565b82525050565b612b5281613004565b82525050565b6000612b6382612948565b9150612b6f828561241b565b9150612b7a826129ee565b9150612b86828461241b565b91508190509392505050565b6000602082019050612ba760008301846123b5565b92915050565b6000602082019050612bc260008301846123c4565b92915050565b6000602082019050612bdd60008301846123d3565b92915050565b60006020820190508181036000830152612bfd81846123e2565b905092915050565b60006020820190508181036000830152612c1e8161244c565b9050919050565b60006020820190508181036000830152612c3e8161248c565b9050919050565b60006020820190508181036000830152612c5e816124f2565b9050919050565b60006020820190508181036000830152612c7e81612532565b9050919050565b60006020820190508181036000830152612c9e81612598565b9050919050565b60006020820190508181036000830152612cbe816125fe565b9050919050565b60006020820190508181036000830152612cde81612664565b9050919050565b60006020820190508181036000830152612cfe816126a4565b9050919050565b60006020820190508181036000830152612d1e8161270a565b9050919050565b60006020820190508181036000830152612d3e8161274a565b9050919050565b60006020820190508181036000830152612d5e816127b0565b9050919050565b60006020820190508181036000830152612d7e81612816565b9050919050565b60006020820190508181036000830152612d9e8161287c565b9050919050565b60006020820190508181036000830152612dbe816128e2565b9050919050565b60006020820190508181036000830152612dde81612988565b9050919050565b60006020820190508181036000830152612dfe81612a2e565b9050919050565b60006020820190508181036000830152612e1e81612a94565b9050919050565b60006020820190508181036000830152612e3e81612ad4565b9050919050565b6000602082019050612e5a6000830184612b3a565b92915050565b6000602082019050612e756000830184612b49565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ead82612ffa565b9150612eb883612ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eed57612eec6130a0565b5b828201905092915050565b6000612f0382612ffa565b9150612f0e83612ffa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4757612f466130a0565b5b828202905092915050565b6000612f5d82612ffa565b9150612f6883612ffa565b925082821015612f7b57612f7a6130a0565b5b828203905092915050565b6000612f9182612fda565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561302f578082015181840152602081019050613014565b8381111561303e576000848401525b50505050565b600061304f82612ffa565b91506000821415613063576130626130a0565b5b600182039050919050565b6000600282049050600182168061308657607f821691505b6020821081141561309a576130996130cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61311881612f86565b811461312357600080fd5b50565b61312f81612fa4565b811461313a57600080fd5b50565b61314681612fae565b811461315157600080fd5b50565b61315d81612ffa565b811461316857600080fd5b5056fea2646970667358221220eaef8f6773103f0422335a7632943ce232dc2d62cc7d4b449d71fc89632d39cf64736f6c63430008000033
Deployed Bytecode Sourcemap
56095:122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51229:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6783:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9134:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7903:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9915:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34495:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34888:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7745:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35936:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10619:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55620:178;;;:::i;:::-;;54811:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18170:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19892:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8074:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18580:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55230:172;;;:::i;:::-;;52042:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33364:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32455:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11362:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8407:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52369:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54053:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35280:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8663:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54122:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51229:214;51314:4;51353:42;51338:57;;;:11;:57;;;;:97;;;;51399:36;51423:11;51399:23;:36::i;:::-;51338:97;51331:104;;51229:214;;;:::o;6783:100::-;6837:13;6870:5;6863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6783:100;:::o;9134:201::-;9217:4;9234:13;9250:12;:10;:12::i;:::-;9234:28;;9273:32;9282:5;9289:7;9298:6;9273:8;:32::i;:::-;9323:4;9316:11;;;9134:201;;;;:::o;7903:108::-;7964:7;7991:12;;7984:19;;7903:108;:::o;9915:295::-;10046:4;10063:15;10081:12;:10;:12::i;:::-;10063:30;;10104:38;10120:4;10126:7;10135:6;10104:15;:38::i;:::-;10153:27;10163:4;10169:2;10173:6;10153:9;:27::i;:::-;10198:4;10191:11;;;9915:295;;;;;:::o;34495:131::-;34569:7;34596:6;:12;34603:4;34596:12;;;;;;;;;;;:22;;;34589:29;;34495:131;;;:::o;34888:147::-;34971:18;34984:4;34971:12;:18::i;:::-;32946:30;32957:4;32963:12;:10;:12::i;:::-;32946:10;:30::i;:::-;35002:25:::1;35013:4;35019:7;35002:10;:25::i;:::-;34888:147:::0;;;:::o;7745:93::-;7803:5;7828:2;7821:9;;7745:93;:::o;35936:218::-;36043:12;:10;:12::i;:::-;36032:23;;:7;:23;;;36024:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;36120:26;36132:4;36138:7;36120:11;:26::i;:::-;35936:218;;:::o;10619:240::-;10707:4;10724:13;10740:12;:10;:12::i;:::-;10724:28;;10763:66;10772:5;10779:7;10818:10;10788:11;:18;10800:5;10788:18;;;;;;;;;;;;;;;:27;10807:7;10788:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10763:8;:66::i;:::-;10847:4;10840:11;;;10619:240;;;;:::o;55620:178::-;55673:34;54160:24;55694:12;:10;:12::i;:::-;55673:7;:34::i;:::-;55665:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;55780:10;:8;:10::i;:::-;55620:178::o;54811:205::-;54887:34;54091:24;54908:12;:10;:12::i;:::-;54887:7;:34::i;:::-;54879:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;54991:17;54997:2;55001:6;54991:5;:17::i;:::-;54811:205;;:::o;18170:91::-;18226:27;18232:12;:10;:12::i;:::-;18246:6;18226:5;:27::i;:::-;18170:91;:::o;19892:86::-;19939:4;19963:7;;;;;;;;;;;19956:14;;19892:86;:::o;8074:127::-;8148:7;8175:9;:18;8185:7;8175:18;;;;;;;;;;;;;;;;8168:25;;8074:127;;;:::o;18580:164::-;18657:46;18673:7;18682:12;:10;:12::i;:::-;18696:6;18657:15;:46::i;:::-;18714:22;18720:7;18729:6;18714:5;:22::i;:::-;18580:164;;:::o;55230:172::-;55281:34;54160:24;55302:12;:10;:12::i;:::-;55281:7;:34::i;:::-;55273:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;55386:8;:6;:8::i;:::-;55230:172::o;52042:153::-;52132:7;52159:28;52181:5;52159:12;:18;52172:4;52159:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;52152:35;;52042:153;;;;:::o;33364:147::-;33450:4;33474:6;:12;33481:4;33474:12;;;;;;;;;;;:20;;:29;33495:7;33474:29;;;;;;;;;;;;;;;;;;;;;;;;;33467:36;;33364:147;;;;:::o;7002:104::-;7058:13;7091:7;7084:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7002:104;:::o;32455:49::-;32500:4;32455:49;;;:::o;11362:438::-;11455:4;11472:13;11488:12;:10;:12::i;:::-;11472:28;;11511:24;11538:11;:18;11550:5;11538:18;;;;;;;;;;;;;;;:27;11557:7;11538:27;;;;;;;;;;;;;;;;11511:54;;11604:15;11584:16;:35;;11576:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11697:60;11706:5;11713:7;11741:15;11722:16;:34;11697:8;:60::i;:::-;11788:4;11781:11;;;;11362:438;;;;:::o;8407:193::-;8486:4;8503:13;8519:12;:10;:12::i;:::-;8503:28;;8542;8552:5;8559:2;8563:6;8542:9;:28::i;:::-;8588:4;8581:11;;;8407:193;;;;:::o;52369:142::-;52449:7;52476:27;:12;:18;52489:4;52476:18;;;;;;;;;;;:25;:27::i;:::-;52469:34;;52369:142;;;:::o;54053:62::-;54091:24;54053:62;:::o;35280:149::-;35364:18;35377:4;35364:12;:18::i;:::-;32946:30;32957:4;32963:12;:10;:12::i;:::-;32946:10;:30::i;:::-;35395:26:::1;35407:4;35413:7;35395:11;:26::i;:::-;35280:149:::0;;;:::o;8663:151::-;8752:7;8779:11;:18;8791:5;8779:18;;;;;;;;;;;;;;;:27;8798:7;8779:27;;;;;;;;;;;;;;;;8772:34;;8663:151;;;;:::o;54122:62::-;54160:24;54122:62;:::o;37437:238::-;37521:22;37529:4;37535:7;37521;:22::i;:::-;37516:152;;37592:4;37560:6;:12;37567:4;37560:12;;;;;;;;;;;:20;;:29;37581:7;37560:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;37643:12;:10;:12::i;:::-;37616:40;;37634:7;37616:40;;37628:4;37616:40;;;;;;;;;;37516:152;37437:238;;:::o;45936:152::-;46006:4;46030:50;46035:3;:10;;46071:5;46055:23;;46047:32;;46030:4;:50::i;:::-;46023:57;;45936:152;;;;:::o;33068:204::-;33153:4;33192:32;33177:47;;;:11;:47;;;;:87;;;;33228:36;33252:11;33228:23;:36::i;:::-;33177:87;33170:94;;33068:204;;;:::o;4414:98::-;4467:7;4494:10;4487:17;;4414:98;:::o;14998:380::-;15151:1;15134:19;;:5;:19;;;;15126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:1;15213:21;;:7;:21;;;;15205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15316:6;15286:11;:18;15298:5;15286:18;;;;;;;;;;;;;;;:27;15305:7;15286:27;;;;;;;;;;;;;;;:36;;;;15354:7;15338:32;;15347:5;15338:32;;;15363:6;15338:32;;;;;;:::i;:::-;;;;;;;;14998:380;;;:::o;15665:453::-;15800:24;15827:25;15837:5;15844:7;15827:9;:25::i;:::-;15800:52;;15887:17;15867:16;:37;15863:248;;15949:6;15929:16;:26;;15921:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16033:51;16042:5;16049:7;16077:6;16058:16;:25;16033:8;:51::i;:::-;15863:248;15665:453;;;;:::o;12279:671::-;12426:1;12410:18;;:4;:18;;;;12402:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12503:1;12489:16;;:2;:16;;;;12481:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12558:38;12579:4;12585:2;12589:6;12558:20;:38::i;:::-;12609:19;12631:9;:15;12641:4;12631:15;;;;;;;;;;;;;;;;12609:37;;12680:6;12665:11;:21;;12657:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12797:6;12783:11;:20;12765:9;:15;12775:4;12765:15;;;;;;;;;;;;;;;:38;;;;12842:6;12825:9;:13;12835:2;12825:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12881:2;12866:26;;12875:4;12866:26;;;12885:6;12866:26;;;;;;:::i;:::-;;;;;;;;12905:37;12925:4;12931:2;12935:6;12905:19;:37::i;:::-;12279:671;;;;:::o;33801:505::-;33890:22;33898:4;33904:7;33890;:22::i;:::-;33885:414;;34078:41;34106:7;34078:41;;34116:2;34078:19;:41::i;:::-;34192:38;34220:4;34212:13;;34227:2;34192:19;:38::i;:::-;33983:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33929:358;;;;;;;;;;;:::i;:::-;;;;;;;;33885:414;33801:505;;:::o;52604:169::-;52692:31;52709:4;52715:7;52692:16;:31::i;:::-;52734;52757:7;52734:12;:18;52747:4;52734:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;52604:169;;:::o;52867:174::-;52956:32;52974:4;52980:7;52956:17;:32::i;:::-;52999:34;53025:7;52999:12;:18;53012:4;52999:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;52867:174;;:::o;20951:120::-;20495:8;:6;:8::i;:::-;20487:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;21020:5:::1;21010:7;;:15;;;;;;;;;;;;;;;;;;21041:22;21050:12;:10;:12::i;:::-;21041:22;;;;;;:::i;:::-;;;;;;;;20951:120::o:0;13237:399::-;13340:1;13321:21;;:7;:21;;;;13313:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13391:49;13420:1;13424:7;13433:6;13391:20;:49::i;:::-;13469:6;13453:12;;:22;;;;;;;:::i;:::-;;;;;;;;13508:6;13486:9;:18;13496:7;13486:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13551:7;13530:37;;13547:1;13530:37;;;13560:6;13530:37;;;;;;:::i;:::-;;;;;;;;13580:48;13608:1;13612:7;13621:6;13580:19;:48::i;:::-;13237:399;;:::o;13969:591::-;14072:1;14053:21;;:7;:21;;;;14045:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14125:49;14146:7;14163:1;14167:6;14125:20;:49::i;:::-;14187:22;14212:9;:18;14222:7;14212:18;;;;;;;;;;;;;;;;14187:43;;14267:6;14249:14;:24;;14241:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14386:6;14369:14;:23;14348:9;:18;14358:7;14348:18;;;;;;;;;;;;;;;:44;;;;14430:6;14414:12;;:22;;;;;;;:::i;:::-;;;;;;;;14480:1;14454:37;;14463:7;14454:37;;;14484:6;14454:37;;;;;;:::i;:::-;;;;;;;;14504:48;14524:7;14541:1;14545:6;14504:19;:48::i;:::-;13969:591;;;:::o;20692:118::-;20218:8;:6;:8::i;:::-;20217:9;20209:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20762:4:::1;20752:7;;:14;;;;;;;;;;;;;;;;;;20782:20;20789:12;:10;:12::i;:::-;20782:20;;;;;;:::i;:::-;;;;;;;;20692:118::o:0;47232:158::-;47306:7;47357:22;47361:3;:10;;47373:5;47357:3;:22::i;:::-;47349:31;;47326:56;;47232:158;;;;:::o;46761:117::-;46824:7;46851:19;46859:3;:10;;46851:7;:19::i;:::-;46844:26;;46761:117;;;:::o;39851:414::-;39914:4;39936:21;39946:3;39951:5;39936:9;:21::i;:::-;39931:327;;39974:3;:11;;39991:5;39974:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40157:3;:11;;:18;;;;40135:3;:12;;:19;40148:5;40135:19;;;;;;;;;;;:40;;;;40197:4;40190:11;;;;39931:327;40241:5;40234:12;;39851:414;;;;;:::o;30304:157::-;30389:4;30428:25;30413:40;;;:11;:40;;;;30406:47;;30304:157;;;:::o;55806:217::-;55971:44;55998:4;56004:2;56008:6;55971:26;:44::i;:::-;55806:217;;;:::o;17447:124::-;;;;:::o;28044:451::-;28119:13;28145:19;28190:1;28181:6;28177:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;28167:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28145:47;;28203:15;:6;28210:1;28203:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;28229;:6;28236:1;28229:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;28260:9;28285:1;28276:6;28272:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;28260:26;;28255:135;28292:1;28288;:5;28255:135;;;28327:12;28348:3;28340:5;:11;28327:25;;;;;;;;;;;;;;;;;;28315:6;28322:1;28315:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;28377:1;28367:11;;;;;28295:3;;;;:::i;:::-;;;28255:135;;;;28417:1;28408:5;:10;28400:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;28480:6;28466:21;;;28044:451;;;;:::o;37807:239::-;37891:22;37899:4;37905:7;37891;:22::i;:::-;37887:152;;;37962:5;37930:6;:12;37937:4;37930:12;;;;;;;;;;;:20;;:29;37951:7;37930:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;38014:12;:10;:12::i;:::-;37987:40;;38005:7;37987:40;;37999:4;37987:40;;;;;;;;;;37887:152;37807:239;;:::o;46264:158::-;46337:4;46361:53;46369:3;:10;;46405:5;46389:23;;46381:32;;46361:7;:53::i;:::-;46354:60;;46264:158;;;;:::o;42625:120::-;42692:7;42719:3;:11;;42731:5;42719:18;;;;;;;;;;;;;;;;;;;;;;;;42712:25;;42625:120;;;;:::o;42162:109::-;42218:7;42245:3;:11;;:18;;;;42238:25;;42162:109;;;:::o;41947:129::-;42020:4;42067:1;42044:3;:12;;:19;42057:5;42044:19;;;;;;;;;;;;:24;;42037:31;;41947:129;;;;:::o;21757:272::-;21900:44;21927:4;21933:2;21937:6;21900:26;:44::i;:::-;21966:8;:6;:8::i;:::-;21965:9;21957:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21757:272;;;:::o;40441:1420::-;40507:4;40625:18;40646:3;:12;;:19;40659:5;40646:19;;;;;;;;;;;;40625:40;;40696:1;40682:10;:15;40678:1176;;41057:21;41094:1;41081:10;:14;;;;:::i;:::-;41057:38;;41110:17;41151:1;41130:3;:11;;:18;;;;:22;;;;:::i;:::-;41110:42;;41186:13;41173:9;:26;41169:405;;41220:17;41240:3;:11;;41252:9;41240:22;;;;;;;;;;;;;;;;;;;;;;;;41220:42;;41394:9;41365:3;:11;;41377:13;41365:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;41505:10;41479:3;:12;;:23;41492:9;41479:23;;;;;;;;;;;:36;;;;41169:405;;41655:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41750:3;:12;;:19;41763:5;41750:19;;;;;;;;;;;41743:26;;;41793:4;41786:11;;;;;;;40678:1176;41837:5;41830:12;;;40441:1420;;;;;:::o;16718:125::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;;;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:330::-;;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5241:34;5237:1;5232:3;5228:11;5221:55;5302:2;5297:3;5293:12;5286:19;;5127:184;;;:::o;5317:367::-;;5480:67;5544:2;5539:3;5480:67;:::i;:::-;5473:74;;5577:34;5573:1;5568:3;5564:11;5557:55;5643:5;5638:2;5633:3;5629:12;5622:27;5675:2;5670:3;5666:12;5659:19;;5463:221;;;:::o;5690:318::-;;5853:67;5917:2;5912:3;5853:67;:::i;:::-;5846:74;;5950:22;5946:1;5941:3;5937:11;5930:43;5999:2;5994:3;5990:12;5983:19;;5836:172;;;:::o;6014:366::-;;6177:67;6241:2;6236:3;6177:67;:::i;:::-;6170:74;;6274:34;6270:1;6265:3;6261:11;6254:55;6340:4;6335:2;6330:3;6326:12;6319:26;6371:2;6366:3;6362:12;6355:19;;6160:220;;;:::o;6386:389::-;;6549:67;6613:2;6608:3;6549:67;:::i;:::-;6542:74;;6646:34;6642:1;6637:3;6633:11;6626:55;6712:27;6707:2;6702:3;6698:12;6691:49;6766:2;6761:3;6757:12;6750:19;;6532:243;;;:::o;6781:366::-;;6944:67;7008:2;7003:3;6944:67;:::i;:::-;6937:74;;7041:34;7037:1;7032:3;7028:11;7021:55;7107:4;7102:2;7097:3;7093:12;7086:26;7138:2;7133:3;7129:12;7122:19;;6927:220;;;:::o;7153:327::-;;7316:67;7380:2;7375:3;7316:67;:::i;:::-;7309:74;;7413:31;7409:1;7404:3;7400:11;7393:52;7471:2;7466:3;7462:12;7455:19;;7299:181;;;:::o;7486:370::-;;7649:67;7713:2;7708:3;7649:67;:::i;:::-;7642:74;;7746:34;7742:1;7737:3;7733:11;7726:55;7812:8;7807:2;7802:3;7798:12;7791:30;7847:2;7842:3;7838:12;7831:19;;7632:224;;;:::o;7862:314::-;;8025:67;8089:2;8084:3;8025:67;:::i;:::-;8018:74;;8122:18;8118:1;8113:3;8109:11;8102:39;8167:2;8162:3;8158:12;8151:19;;8008:168;;;:::o;8182:386::-;;8345:67;8409:2;8404:3;8345:67;:::i;:::-;8338:74;;8442:34;8438:1;8433:3;8429:11;8422:55;8508:24;8503:2;8498:3;8494:12;8487:46;8559:2;8554:3;8550:12;8543:19;;8328:240;;;:::o;8574:365::-;;8737:67;8801:2;8796:3;8737:67;:::i;:::-;8730:74;;8834:34;8830:1;8825:3;8821:11;8814:55;8900:3;8895:2;8890:3;8886:12;8879:25;8930:2;8925:3;8921:12;8914:19;;8720:219;;;:::o;8945:369::-;;9108:67;9172:2;9167:3;9108:67;:::i;:::-;9101:74;;9205:34;9201:1;9196:3;9192:11;9185:55;9271:7;9266:2;9261:3;9257:12;9250:29;9305:2;9300:3;9296:12;9289:19;;9091:223;;;:::o;9320:368::-;;9483:67;9547:2;9542:3;9483:67;:::i;:::-;9476:74;;9580:34;9576:1;9571:3;9567:11;9560:55;9646:6;9641:2;9636:3;9632:12;9625:28;9679:2;9674:3;9670:12;9663:19;;9466:222;;;:::o;9694:387::-;;9857:67;9921:2;9916:3;9857:67;:::i;:::-;9850:74;;9954:34;9950:1;9945:3;9941:11;9934:55;10020:25;10015:2;10010:3;10006:12;9999:47;10072:2;10067:3;10063:12;10056:19;;9840:241;;;:::o;10087:357::-;;10268:85;10350:2;10345:3;10268:85;:::i;:::-;10261:92;;10383:25;10379:1;10374:3;10370:11;10363:46;10435:2;10430:3;10426:12;10419:19;;10251:193;;;:::o;10450:369::-;;10613:67;10677:2;10672:3;10613:67;:::i;:::-;10606:74;;10710:34;10706:1;10701:3;10697:11;10690:55;10776:7;10771:2;10766:3;10762:12;10755:29;10810:2;10805:3;10801:12;10794:19;;10596:223;;;:::o;10825:351::-;;11006:85;11088:2;11083:3;11006:85;:::i;:::-;10999:92;;11121:19;11117:1;11112:3;11108:11;11101:40;11167:2;11162:3;11158:12;11151:19;;10989:187;;;:::o;11182:379::-;;11345:67;11409:2;11404:3;11345:67;:::i;:::-;11338:74;;11442:34;11438:1;11433:3;11429:11;11422:55;11508:17;11503:2;11498:3;11494:12;11487:39;11552:2;11547:3;11543:12;11536:19;;11328:233;;;:::o;11567:329::-;;11730:67;11794:2;11789:3;11730:67;:::i;:::-;11723:74;;11827:33;11823:1;11818:3;11814:11;11807:54;11887:2;11882:3;11878:12;11871:19;;11713:183;;;:::o;11902:374::-;;12065:67;12129:2;12124:3;12065:67;:::i;:::-;12058:74;;12162:34;12158:1;12153:3;12149:11;12142:55;12228:12;12223:2;12218:3;12214:12;12207:34;12267:2;12262:3;12258:12;12251:19;;12048:228;;;:::o;12282:118::-;12369:24;12387:5;12369:24;:::i;:::-;12364:3;12357:37;12347:53;;:::o;12406:112::-;12489:22;12505:5;12489:22;:::i;:::-;12484:3;12477:35;12467:51;;:::o;12524:967::-;;12928:148;13072:3;12928:148;:::i;:::-;12921:155;;13093:95;13184:3;13175:6;13093:95;:::i;:::-;13086:102;;13205:148;13349:3;13205:148;:::i;:::-;13198:155;;13370:95;13461:3;13452:6;13370:95;:::i;:::-;13363:102;;13482:3;13475:10;;12910:581;;;;;:::o;13497:222::-;;13628:2;13617:9;13613:18;13605:26;;13641:71;13709:1;13698:9;13694:17;13685:6;13641:71;:::i;:::-;13595:124;;;;:::o;13725:210::-;;13850:2;13839:9;13835:18;13827:26;;13863:65;13925:1;13914:9;13910:17;13901:6;13863:65;:::i;:::-;13817:118;;;;:::o;13941:222::-;;14072:2;14061:9;14057:18;14049:26;;14085:71;14153:1;14142:9;14138:17;14129:6;14085:71;:::i;:::-;14039:124;;;;:::o;14169:313::-;;14320:2;14309:9;14305:18;14297:26;;14369:9;14363:4;14359:20;14355:1;14344:9;14340:17;14333:47;14397:78;14470:4;14461:6;14397:78;:::i;:::-;14389:86;;14287:195;;;;:::o;14488:419::-;;14692:2;14681:9;14677:18;14669:26;;14741:9;14735:4;14731:20;14727:1;14716:9;14712:17;14705:47;14769:131;14895:4;14769:131;:::i;:::-;14761:139;;14659:248;;;:::o;14913:419::-;;15117:2;15106:9;15102:18;15094:26;;15166:9;15160:4;15156:20;15152:1;15141:9;15137:17;15130:47;15194:131;15320:4;15194:131;:::i;:::-;15186:139;;15084:248;;;:::o;15338:419::-;;15542:2;15531:9;15527:18;15519:26;;15591:9;15585:4;15581:20;15577:1;15566:9;15562:17;15555:47;15619:131;15745:4;15619:131;:::i;:::-;15611:139;;15509:248;;;:::o;15763:419::-;;15967:2;15956:9;15952:18;15944:26;;16016:9;16010:4;16006:20;16002:1;15991:9;15987:17;15980:47;16044:131;16170:4;16044:131;:::i;:::-;16036:139;;15934:248;;;:::o;16188:419::-;;16392:2;16381:9;16377:18;16369:26;;16441:9;16435:4;16431:20;16427:1;16416:9;16412:17;16405:47;16469:131;16595:4;16469:131;:::i;:::-;16461:139;;16359:248;;;:::o;16613:419::-;;16817:2;16806:9;16802:18;16794:26;;16866:9;16860:4;16856:20;16852:1;16841:9;16837:17;16830:47;16894:131;17020:4;16894:131;:::i;:::-;16886:139;;16784:248;;;:::o;17038:419::-;;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17209:248;;;:::o;17463:419::-;;17667:2;17656:9;17652:18;17644:26;;17716:9;17710:4;17706:20;17702:1;17691:9;17687:17;17680:47;17744:131;17870:4;17744:131;:::i;:::-;17736:139;;17634:248;;;:::o;17888:419::-;;18092:2;18081:9;18077:18;18069:26;;18141:9;18135:4;18131:20;18127:1;18116:9;18112:17;18105:47;18169:131;18295:4;18169:131;:::i;:::-;18161:139;;18059:248;;;:::o;18313:419::-;;18517:2;18506:9;18502:18;18494:26;;18566:9;18560:4;18556:20;18552:1;18541:9;18537:17;18530:47;18594:131;18720:4;18594:131;:::i;:::-;18586:139;;18484:248;;;:::o;18738:419::-;;18942:2;18931:9;18927:18;18919:26;;18991:9;18985:4;18981:20;18977:1;18966:9;18962:17;18955:47;19019:131;19145:4;19019:131;:::i;:::-;19011:139;;18909:248;;;:::o;19163:419::-;;19367:2;19356:9;19352:18;19344:26;;19416:9;19410:4;19406:20;19402:1;19391:9;19387:17;19380:47;19444:131;19570:4;19444:131;:::i;:::-;19436:139;;19334:248;;;:::o;19588:419::-;;19792:2;19781:9;19777:18;19769:26;;19841:9;19835:4;19831:20;19827:1;19816:9;19812:17;19805:47;19869:131;19995:4;19869:131;:::i;:::-;19861:139;;19759:248;;;:::o;20013:419::-;;20217:2;20206:9;20202:18;20194:26;;20266:9;20260:4;20256:20;20252:1;20241:9;20237:17;20230:47;20294:131;20420:4;20294:131;:::i;:::-;20286:139;;20184:248;;;:::o;20438:419::-;;20642:2;20631:9;20627:18;20619:26;;20691:9;20685:4;20681:20;20677:1;20666:9;20662:17;20655:47;20719:131;20845:4;20719:131;:::i;:::-;20711:139;;20609:248;;;:::o;20863:419::-;;21067:2;21056:9;21052:18;21044:26;;21116:9;21110:4;21106:20;21102:1;21091:9;21087:17;21080:47;21144:131;21270:4;21144:131;:::i;:::-;21136:139;;21034:248;;;:::o;21288:419::-;;21492:2;21481:9;21477:18;21469:26;;21541:9;21535:4;21531:20;21527:1;21516:9;21512:17;21505:47;21569:131;21695:4;21569:131;:::i;:::-;21561:139;;21459:248;;;:::o;21713:419::-;;21917:2;21906:9;21902:18;21894:26;;21966:9;21960:4;21956:20;21952:1;21941:9;21937:17;21930:47;21994:131;22120:4;21994:131;:::i;:::-;21986:139;;21884:248;;;:::o;22138:222::-;;22269:2;22258:9;22254:18;22246:26;;22282:71;22350:1;22339:9;22335:17;22326:6;22282:71;:::i;:::-;22236:124;;;;:::o;22366:214::-;;22493:2;22482:9;22478:18;22470:26;;22506:67;22570:1;22559:9;22555:17;22546:6;22506:67;:::i;:::-;22460:120;;;;:::o;22586:99::-;;22672:5;22666:12;22656:22;;22645:40;;;:::o;22691:169::-;;22809:6;22804:3;22797:19;22849:4;22844:3;22840:14;22825:29;;22787:73;;;;:::o;22866:148::-;;23005:3;22990:18;;22980:34;;;;:::o;23020:305::-;;23079:20;23097:1;23079:20;:::i;:::-;23074:25;;23113:20;23131:1;23113:20;:::i;:::-;23108:25;;23267:1;23199:66;23195:74;23192:1;23189:81;23186:2;;;23273:18;;:::i;:::-;23186:2;23317:1;23314;23310:9;23303:16;;23064:261;;;;:::o;23331:348::-;;23394:20;23412:1;23394:20;:::i;:::-;23389:25;;23428:20;23446:1;23428:20;:::i;:::-;23423:25;;23616:1;23548:66;23544:74;23541:1;23538:81;23533:1;23526:9;23519:17;23515:105;23512:2;;;23623:18;;:::i;:::-;23512:2;23671:1;23668;23664:9;23653:20;;23379:300;;;;:::o;23685:191::-;;23745:20;23763:1;23745:20;:::i;:::-;23740:25;;23779:20;23797:1;23779:20;:::i;:::-;23774:25;;23818:1;23815;23812:8;23809:2;;;23823:18;;:::i;:::-;23809:2;23868:1;23865;23861:9;23853:17;;23730:146;;;;:::o;23882:96::-;;23948:24;23966:5;23948:24;:::i;:::-;23937:35;;23927:51;;;:::o;23984:90::-;;24061:5;24054:13;24047:21;24036:32;;24026:48;;;:::o;24080:77::-;;24146:5;24135:16;;24125:32;;;:::o;24163:149::-;;24239:66;24232:5;24228:78;24217:89;;24207:105;;;:::o;24318:126::-;;24395:42;24388:5;24384:54;24373:65;;24363:81;;;:::o;24450:77::-;;24516:5;24505:16;;24495:32;;;:::o;24533:86::-;;24608:4;24601:5;24597:16;24586:27;;24576:43;;;:::o;24625:307::-;24693:1;24703:113;24717:6;24714:1;24711:13;24703:113;;;24802:1;24797:3;24793:11;24787:18;24783:1;24778:3;24774:11;24767:39;24739:2;24736:1;24732:10;24727:15;;24703:113;;;24834:6;24831:1;24828:13;24825:2;;;24914:1;24905:6;24900:3;24896:16;24889:27;24825:2;24674:258;;;;:::o;24938:171::-;;25000:24;25018:5;25000:24;:::i;:::-;24991:33;;25046:4;25039:5;25036:15;25033:2;;;25054:18;;:::i;:::-;25033:2;25101:1;25094:5;25090:13;25083:20;;24981:128;;;:::o;25115:320::-;;25196:1;25190:4;25186:12;25176:22;;25243:1;25237:4;25233:12;25264:18;25254:2;;25320:4;25312:6;25308:17;25298:27;;25254:2;25382;25374:6;25371:14;25351:18;25348:38;25345:2;;;25401:18;;:::i;:::-;25345:2;25166:269;;;;:::o;25441:180::-;25489:77;25486:1;25479:88;25586:4;25583:1;25576:15;25610:4;25607:1;25600:15;25627:180;25675:77;25672:1;25665:88;25772:4;25769:1;25762:15;25796:4;25793:1;25786:15;25813:102;;25905:2;25901:7;25896:2;25889:5;25885:14;25881:28;25871:38;;25861:54;;;:::o;25921:122::-;25994:24;26012:5;25994:24;:::i;:::-;25987:5;25984:35;25974:2;;26033:1;26030;26023:12;25974:2;25964:79;:::o;26049:122::-;26122:24;26140:5;26122:24;:::i;:::-;26115:5;26112:35;26102:2;;26161:1;26158;26151:12;26102:2;26092:79;:::o;26177:120::-;26249:23;26266:5;26249:23;:::i;:::-;26242:5;26239:34;26229:2;;26287:1;26284;26277:12;26229:2;26219:78;:::o;26303:122::-;26376:24;26394:5;26376:24;:::i;:::-;26369:5;26366:35;26356:2;;26415:1;26412;26405:12;26356:2;26346:79;:::o
Swarm Source
ipfs://eaef8f6773103f0422335a7632943ce232dc2d62cc7d4b449d71fc89632d39cf
Loading...
Loading
Loading...
Loading
OVERVIEW
Bepro Network Protocol is a decentralized marketplace and system that connects developers with operators or anyone looking to build open-source development repositories.Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.