Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
5,961,107,932,365.638920741210288272 DANK
Holders
105
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.776037721511160486 DANKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Dank
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./SafeMath.sol"; import "./SafeERC20.sol"; import "./Ownable.sol"; import "./ERC20PresetMinterRebaser.sol"; // ,------. ,---. ,--. ,--.,--. ,--. // | .-. \ / O \ | ,'.| || .' / // | | \ :| .-. || |' ' || . ' // | '--' /| | | || | ` || |\ \ // `-------' `--' `--'`--' `--'`--' '--' // ,--. ,--.,------.,--. ,--.,------. // | `.' || .---'| `.' || .---' // | |'.'| || `--, | |'.'| || `--, // | | | || `---.| | | || `---. // `--' `--'`------'`--' `--'`------' // ,---. ,--. ,--. ,---. ,------. // ' .-' | | | | / O \ | .--. ' // `. `-. | |.'.| || .-. || '--' | // .-' || ,'. || | | || | --' // `-----' '--' '--'`--' `--'`--' abstract contract IDANK { event Rebase( uint256 epoch, uint256 prevDankScalingFactor, uint256 newDankScalingFactor ); event Mint(address to, uint256 amount); event Burn(address from, uint256 amount); } contract Dank is ERC20PresetMinterRebaser, Ownable, IDANK { using SafeMath for uint256; /// @dev public variables uint256 public initSupply; uint256 public dankScalingFactor; uint256 public constant BASE = 10**18; uint256 public constant internalDecimals = 10**24; mapping(address => uint256) public nonces; bytes32 public DOMAIN_SEPARATOR; /// keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; /// @notice EIP-712 implementation bytes32 public constant DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,uint256 chainId,address verifyingContract)" ); /// @dev internal variables /// @dev not currently used bool internal _notEntered; mapping(address => uint256) internal _dankBalances; mapping(address => mapping(address => uint256)) internal _allowedFragments; /// @dev 69 ftw uint256 private INIT_SUPPLY = 6969696969696 * 10**18; uint256 private _totalSupply; /// I modifier validRecipient(address to) { require(to != address(this)); require(to != address(0x0)); _; } /// am constructor() ERC20PresetMinterRebaser("Dank", "DANK") { dankScalingFactor = BASE; initSupply = _fragmentToDank(INIT_SUPPLY); _totalSupply = INIT_SUPPLY; _dankBalances[owner()] = initSupply; emit Transfer(address(0), msg.sender, INIT_SUPPLY); } /// not function totalSupply() public view override returns (uint256) { return _totalSupply; } /// ryoshi function maxScalingFactor() external view returns (uint256) { return _maxScalingFactor(); } /// @dev checks if scaling factor is too high to compute balances for rebasing function _maxScalingFactor() internal view returns (uint256) { // can only go up to 2**256-1 = initSupply * dankScalingFactor return uint256(int256(-1)) / initSupply; } function mint(address to, uint256 amount) external returns (bool) { require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role"); _mint(to, amount); return true; } function _mint(address to, uint256 amount) internal override { _totalSupply = _totalSupply.add(amount); uint256 dankValue = _fragmentToDank(amount); initSupply = initSupply.add(dankValue); require( dankScalingFactor <= _maxScalingFactor(), "max scaling factor too low" ); _dankBalances[to] = _dankBalances[to].add(dankValue); emit Mint(to, amount); emit Transfer(address(0), to, amount); } function burn(uint256 amount) public override { _burn(amount); } function _burn(uint256 amount) internal { // decrease totalSupply _totalSupply = _totalSupply.sub(amount); // get underlying value uint256 dankValue = _fragmentToDank(amount); // decrease initSupply initSupply = initSupply.sub(dankValue); // decrease balance _dankBalances[msg.sender] = _dankBalances[msg.sender].sub(dankValue); emit Burn(msg.sender, amount); emit Transfer(msg.sender, address(0), amount); } /** * @notice Mints new tokens using underlying amount, increasing totalSupply, initSupply, and a users balance. */ function mintUnderlying(address to, uint256 amount) public returns (bool) { require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role"); _mintUnderlying(to, amount); return true; } /// @dev scales the input amount function _mintUnderlying(address to, uint256 amount) internal { initSupply = initSupply.add(amount); uint256 scaledAmount = _dankToFragment(amount); _totalSupply = _totalSupply.add(scaledAmount); require( dankScalingFactor <= _maxScalingFactor(), "scaling factor lower than max" ); // add balance _dankBalances[to] = _dankBalances[to].add(amount); emit Mint(to, scaledAmount); emit Transfer(address(0), to, scaledAmount); } function transferUnderlying(address to, uint256 value) public validRecipient(to) returns (bool) { // sub from balance of sender _dankBalances[msg.sender] = _dankBalances[msg.sender].sub(value); // add to balance of receiver _dankBalances[to] = _dankBalances[to].add(value); emit Transfer(msg.sender, to, _dankToFragment(value)); return true; } function transfer(address to, uint256 value) public override validRecipient(to) returns (bool) { // minimum transfer value == dankScalingFactor / 1e24; uint256 dankValue = _fragmentToDank(value); _dankBalances[msg.sender] = _dankBalances[msg.sender].sub(dankValue); _dankBalances[to] = _dankBalances[to].add(dankValue); emit Transfer(msg.sender, to, value); return true; } function transferFrom( address from, address to, uint256 value ) public override validRecipient(to) returns (bool) { _allowedFragments[from][msg.sender] = _allowedFragments[from][ msg.sender ].sub(value); uint256 dankValue = _fragmentToDank(value); _dankBalances[from] = _dankBalances[from].sub(dankValue); _dankBalances[to] = _dankBalances[to].add(dankValue); emit Transfer(from, to, value); return true; } function balanceOf(address who) public view override returns (uint256) { return _dankToFragment(_dankBalances[who]); } function balanceOfUnderlying(address who) public view returns (uint256) { return _dankBalances[who]; } function allowance(address owner_, address spender) public view override returns (uint256) { return _allowedFragments[owner_][spender]; } /// @dev sets the allowed fragments for the spender function approve(address spender, uint256 value) public override returns (bool) { _allowedFragments[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /// @dev updates allowed fragments function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) { _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][ spender ].add(addedValue); emit Approval( msg.sender, spender, _allowedFragments[msg.sender][spender] ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) { uint256 oldValue = _allowedFragments[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedFragments[msg.sender][spender] = 0; } else { _allowedFragments[msg.sender][spender] = oldValue.sub( subtractedValue ); } emit Approval( msg.sender, spender, _allowedFragments[msg.sender][spender] ); return true; } function rebase( uint256 epoch, uint256 indexDelta, bool positive ) public returns (uint256) { require(hasRole(REBASER_ROLE, _msgSender()), "Rebaser role required"); if (indexDelta == 0) { emit Rebase(epoch, dankScalingFactor, dankScalingFactor); return _totalSupply; } uint256 prevDankScalingFactor = dankScalingFactor; if (!positive) { // negative rebase, decrease scaling factor dankScalingFactor = dankScalingFactor .mul(BASE.sub(indexDelta)) .div(BASE); } else { // positive rebase, increase scaling factor uint256 newScalingFactor = dankScalingFactor .mul(BASE.add(indexDelta)) .div(BASE); if (newScalingFactor < _maxScalingFactor()) { dankScalingFactor = newScalingFactor; } else { dankScalingFactor = _maxScalingFactor(); } } emit Rebase(epoch, prevDankScalingFactor, dankScalingFactor); _totalSupply = _dankToFragment(initSupply); return _totalSupply; } function rescueTokens( address token, address to, uint256 amount ) public onlyOwner returns (bool) { SafeERC20.safeTransfer(IERC20(token), to, amount); return true; } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public { require(block.timestamp <= deadline, "DANK/permit-expired"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline ) ) ) ); require(owner != address(0), "DANK/invalid-address-0"); require(owner == ecrecover(digest, v, r, s), "DANK/invalid-permit"); _allowedFragments[owner][spender] = value; emit Approval(owner, spender, value); } function dankToFragment(uint256 dank) public view returns (uint256) { return _dankToFragment(dank); } function fragmentToDank(uint256 value) public view returns (uint256) { return _fragmentToDank(value); } function _dankToFragment(uint256 dank) internal view returns (uint256) { return dank.mul(dankScalingFactor).div(internalDecimals); } function _fragmentToDank(uint256 value) internal view returns (uint256) { return value.mul(internalDecimals).div(dankScalingFactor); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @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); _; } /** * @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 `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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(account), " 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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "./EnumerableSet.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. 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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ 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) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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; /// @solidity memory-safe-assembly 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 in 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; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./Context.sol"; import "./AccessControlEnumerable.sol"; import "./ERC20Burnable.sol"; /// @dev implements custom rebaser role contract ERC20PresetMinterRebaser is Context, AccessControlEnumerable, ERC20Burnable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE"); constructor(string memory name, string memory symbol) ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(REBASER_ROLE, _msgSender()); } }
// SPDX-License-Identifier: MIT // 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./draft-IERC20Permit.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevDankScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDankScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","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":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","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":"dankScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dank","type":"uint256"}],"name":"dankToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToDank","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526c57f84e356d80839a7c23800000600f553480156200002257600080fd5b506040518060400160405280600481526020016344616e6b60e01b8152506040518060400160405280600481526020016344414e4b60e01b8152508181816005908051906020019062000077929190620003ce565b5080516200008d906006906020840190620003ce565b506200009f91506000905033620001bc565b620000cb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001bc565b620000f77f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533620001bc565b5062000105905033620001cc565b670de0b6b3a7640000600955600f546200011f906200021e565b6008819055600f54601055600d6000620001416007546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600f54604051620001ae91815260200190565b60405180910390a362000502565b620001c8828262000265565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006200025f6009546200024b69d3c21bcecceda100000085620002a860201b620012de1790919060201c565b620002bd60201b620012ea1790919060201c565b92915050565b6200027c8282620002cb60201b620012f61760201c565b6000828152600160209081526040909120620002a39183906200137a6200036b821b17901c565b505050565b6000620002b6828462000474565b9392505050565b6000620002b68284620004a2565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001c8576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620003273390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002b6836001600160a01b0384166000818152600183016020526040812054620003c5575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200025f565b5060006200025f565b828054620003dc90620004c5565b90600052602060002090601f0160209004810192826200040057600085556200044b565b82601f106200041b57805160ff19168380011785556200044b565b828001600101855582156200044b579182015b828111156200044b5782518255916020019190600101906200042e565b50620004599291506200045d565b5090565b5b808211156200045957600081556001016200045e565b60008160001904831182151516156200049d57634e487b7160e01b600052601160045260246000fd5b500290565b600082620004c057634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620004da57607f821691505b60208210811415620004fc57634e487b7160e01b600052602260045260246000fd5b50919050565b61268780620005126000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c8063715018a61161015c5780639a6400cd116100ce578063d505accf11610087578063d505accf146105b6578063d5391393146105c9578063d547741f146105f0578063dd62ed3e14610603578063ec342ad01461063c578063f2fde38b1461064b57600080fd5b80639a6400cd1461054f578063a217fddf14610562578063a457c2d71461056a578063a9059cbb1461057d578063ca15c87314610590578063cea9d26f146105a357600080fd5b80638da5cb5b116101205780638da5cb5b146104e05780639010d07c14610505578063917505f41461051857806391d148541461052b57806395d89b411461053e57806397d63f931461054657600080fd5b8063715018a61461046b57806379cc6790146104735780637af548c1146104865780637ecebe001461049957806383eb70e5146104b957600080fd5b8063313ce567116101f55780633af9e669116101b95780633af9e669146103ef57806340c10f191461041857806342966c681461042b5780635cd37b0f1461043e57806364dd48f51461044757806370a082311461045857600080fd5b8063313ce5671461039e578063336d2692146103ad5780633644e515146103c057806336568abe146103c957806339509351146103dc57600080fd5b806318160ddd1161024757806318160ddd146102fd57806320606b701461030557806323b872dd1461032c578063248a9ca31461033f5780632f2ff15d1461036257806330adf81f1461037757600080fd5b806301ffc9a71461028457806306fdde03146102ac578063095ea7b3146102c157806311391924146102d457806311d3e6c4146102f5575b600080fd5b6102976102923660046121bd565b61065e565b60405190151581526020015b60405180910390f35b6102b4610689565b6040516102a39190612213565b6102976102cf366004612262565b61071b565b6102e76102e236600461228c565b610775565b6040519081526020016102a3565b6102e7610780565b6010546102e7565b6102e77f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61029761033a3660046122a5565b61078f565b6102e761034d36600461228c565b60009081526020819052604090206001015490565b6103756103703660046122e1565b6108c4565b005b6102e77f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016102a3565b6102976103bb366004612262565b6108ee565b6102e7600b5481565b6103756103d73660046122e1565b6109b1565b6102976103ea366004612262565b610a34565b6102e76103fd36600461230d565b6001600160a01b03166000908152600d602052604090205490565b610297610426366004612262565b610aa7565b61037561043936600461228c565b610b2a565b6102e760095481565b6102e769d3c21bcecceda100000081565b6102e761046636600461230d565b610b36565b610375610b58565b610375610481366004612262565b610b6c565b6102e7610494366004612336565b610b81565b6102e76104a736600461230d565b600a6020526000908152604090205481565b6102e77f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b6104ed61051336600461236f565b610d1c565b610297610526366004612262565b610d34565b6102976105393660046122e1565b610dae565b6102b4610dd7565b6102e760085481565b6102e761055d36600461228c565b610de6565b6102e7600081565b610297610578366004612262565b610df1565b61029761058b366004612262565b610eb9565b6102e761059e36600461228c565b610f8b565b6102976105b13660046122a5565b610fa2565b6103756105c4366004612391565b610fc1565b6102e77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103756105fe3660046122e1565b611243565b6102e7610611366004612404565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b6102e7670de0b6b3a764000081565b61037561065936600461230d565b611268565b60006001600160e01b03198216635a05180f60e01b148061068357506106838261138f565b92915050565b6060600580546106989061242e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061242e565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b336000818152600e602090815260408083206001600160a01b03871680855292528083208590555191929091600080516020612632833981519152906107649086815260200190565b60405180910390a350600192915050565b6000610683826113c4565b600061078a6113e9565b905090565b6000826001600160a01b0381163014156107a857600080fd5b6001600160a01b0381166107bb57600080fd5b6001600160a01b0385166000908152600e602090815260408083203384529091529020546107e990846113fb565b6001600160a01b0386166000908152600e6020908152604080832033845290915281209190915561081984611407565b6001600160a01b0387166000908152600d602052604090205490915061083f90826113fb565b6001600160a01b038088166000908152600d6020526040808220939093559087168152205461086e9082611425565b6001600160a01b038087166000818152600d60205260409081902093909355915190881690600080516020612612833981519152906108b09088815260200190565b60405180910390a350600195945050505050565b6000828152602081905260409020600101546108df81611431565b6108e9838361143b565b505050565b6000826001600160a01b03811630141561090757600080fd5b6001600160a01b03811661091a57600080fd5b336000908152600d602052604090205461093490846113fb565b336000908152600d6020526040808220929092556001600160a01b038616815220546109609084611425565b6001600160a01b0385166000818152600d602052604090209190915533600080516020612612833981519152610995866113c4565b6040519081526020015b60405180910390a35060019392505050565b6001600160a01b0381163314610a265760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b610a30828261145d565b5050565b336000908152600e602090815260408083206001600160a01b0386168452909152812054610a629083611425565b336000818152600e602090815260408083206001600160a01b038916808552908352928190208590555193845290926000805160206126328339815191529101610764565b6000610ad37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dae565b610b175760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a1d565b610b21838361147f565b50600192915050565b610b33816115b4565b50565b6001600160a01b0381166000908152600d6020526040812054610683906113c4565b610b60611673565b610b6a60006116cd565b565b610b7782338361171f565b610a3082826117b1565b6000610bad7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610dae565b610bf15760405162461bcd60e51b8152602060048201526015602482015274149958985cd95c881c9bdb19481c995c5d5a5c9959605a1b6044820152606401610a1d565b82610c4257600954604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150601054610d15565b60095482610c7a57610c72670de0b6b3a7640000610c6c610c6382886113fb565b600954906112de565b906112ea565b600955610cbe565b6000610c95670de0b6b3a7640000610c6c610c638289611425565b9050610c9f6113e9565b811015610cb0576009819055610cbc565b610cb86113e9565b6009555b505b600954604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a1610d0c6008546113c4565b60108190559150505b9392505050565b6000828152600160205260408120610d1590836118d3565b6000610d607f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dae565b610da45760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a1d565b610b2183836118df565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546106989061242e565b600061068382611407565b336000908152600e602090815260408083206001600160a01b0386168452909152812054808310610e4557336000908152600e602090815260408083206001600160a01b0388168452909152812055610e74565b610e4f81846113fb565b336000908152600e602090815260408083206001600160a01b03891684529091529020555b336000818152600e602090815260408083206001600160a01b03891680855290835292819020549051908152919291600080516020612632833981519152910161099f565b6000826001600160a01b038116301415610ed257600080fd5b6001600160a01b038116610ee557600080fd5b6000610ef084611407565b336000908152600d6020526040902054909150610f0d90826113fb565b336000908152600d6020526040808220929092556001600160a01b03871681522054610f399082611425565b6001600160a01b0386166000818152600d602052604090819020929092559051339060008051602061261283398151915290610f789088815260200190565b60405180910390a3506001949350505050565b600081815260016020526040812061068390611a0b565b6000610fac611673565b610fb7848484611a15565b5060019392505050565b834211156110075760405162461bcd60e51b815260206004820152601360248201527211105392cbdc195c9b5a5d0b595e1c1a5c9959606a1b6044820152606401610a1d565b600b546001600160a01b0388166000908152600a6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b91908761105a8361247f565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016110d392919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506001600160a01b03881661113c5760405162461bcd60e51b8152602060048201526016602482015275044414e4b2f696e76616c69642d616464726573732d360541b6044820152606401610a1d565b60408051600081526020810180835283905260ff861691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa15801561118f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146111ef5760405162461bcd60e51b815260206004820152601360248201527211105392cbda5b9d985b1a590b5c195c9b5a5d606a1b6044820152606401610a1d565b6001600160a01b038881166000818152600e60209081526040808320948c16808452948252918290208a90559051898152600080516020612632833981519152910160405180910390a35050505050505050565b60008281526020819052604090206001015461125e81611431565b6108e9838361145d565b611270611673565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1d565b610b33816116cd565b6000610d15828461249a565b6000610d1582846124b9565b6113008282610dae565b610a30576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113363390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610d15836001600160a01b038416611a67565b60006001600160e01b03198216637965db0b60e01b148061068357506301ffc9a760e01b6001600160e01b0319831614610683565b600061068369d3c21bcecceda1000000610c6c600954856112de90919063ffffffff16565b600060085460001961078a91906124b9565b6000610d1582846124db565b60095460009061068390610c6c8469d3c21bcecceda10000006112de565b6000610d1582846124f2565b610b338133611ab6565b61144582826112f6565b60008281526001602052604090206108e9908261137a565b6114678282611b0f565b60008281526001602052604090206108e99082611b74565b60105461148c9082611425565b601055600061149a82611407565b6008549091506114aa9082611425565b6008556114b56113e9565b60095411156115065760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a1d565b6001600160a01b0383166000908152600d60205260409020546115299082611425565b6001600160a01b0384166000818152600d60209081526040918290209390935580519182529181018490527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518281526001600160a01b03841690600090600080516020612612833981519152906020015b60405180910390a3505050565b6010546115c190826113fb565b60105560006115cf82611407565b6008549091506115df90826113fb565b600855336000908152600d60205260409020546115fc90826113fb565b336000818152600d60209081526040918290209390935580519182529181018490527fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5910160405180910390a160405182815260009033906000805160206126128339815191529060200160405180910390a35050565b6007546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600e602090815260408083209386168352929052205460001981146117ab578181101561179e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a1d565b6117ab8484848403611b89565b50505050565b6001600160a01b0382166118115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a1d565b6001600160a01b038216600090815260026020526040902054818110156118855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a1d565b6001600160a01b0383166000818152600260209081526040808320868603905560048054879003905551858152919291600080516020612612833981519152910160405180910390a3505050565b6000610d158383611c93565b6008546118ec9082611425565b60085560006118fa826113c4565b60105490915061190a9082611425565b6010556119156113e9565b60095411156119665760405162461bcd60e51b815260206004820152601d60248201527f7363616c696e6720666163746f72206c6f776572207468616e206d61780000006044820152606401610a1d565b6001600160a01b0383166000908152600d60205260409020546119899083611425565b6001600160a01b0384166000818152600d60209081526040918290209390935580519182529181018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518181526001600160a01b03841690600090600080516020612612833981519152906020016115a7565b6000610683825490565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108e9908490611cbd565b6000818152600183016020526040812054611aae57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610683565b506000610683565b611ac08282610dae565b610a3057611acd81611d8f565b611ad8836020611da1565b604051602001611ae992919061250a565b60408051601f198184030181529082905262461bcd60e51b8252610a1d91600401612213565b611b198282610dae565b15610a30576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610d15836001600160a01b038416611f3d565b6001600160a01b038316611beb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1d565b6001600160a01b038216611c4c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1d565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020859055905184815260008051602061263283398151915291016115a7565b6000826000018281548110611caa57611caa61257f565b9060005260206000200154905092915050565b6000611d12826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120309092919063ffffffff16565b8051909150156108e95780806020019051810190611d309190612595565b6108e95760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a1d565b60606106836001600160a01b03831660145b60606000611db083600261249a565b611dbb9060026124f2565b67ffffffffffffffff811115611dd357611dd36125b2565b6040519080825280601f01601f191660200182016040528015611dfd576020820181803683370190505b509050600360fc1b81600081518110611e1857611e1861257f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e4757611e4761257f565b60200101906001600160f81b031916908160001a9053506000611e6b84600261249a565b611e769060016124f2565b90505b6001811115611eee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eaa57611eaa61257f565b1a60f81b828281518110611ec057611ec061257f565b60200101906001600160f81b031916908160001a90535060049490941c93611ee7816125c8565b9050611e79565b508315610d155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a1d565b60008181526001830160205260408120548015612026576000611f616001836124db565b8554909150600090611f75906001906124db565b9050818114611fda576000866000018281548110611f9557611f9561257f565b9060005260206000200154905080876000018481548110611fb857611fb861257f565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611feb57611feb6125df565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610683565b6000915050610683565b606061203f8484600085612047565b949350505050565b6060824710156120a85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a1d565b600080866001600160a01b031685876040516120c491906125f5565b60006040518083038185875af1925050503d8060008114612101576040519150601f19603f3d011682016040523d82523d6000602084013e612106565b606091505b509150915061211787838387612122565b979650505050505050565b6060831561218e578251612187576001600160a01b0385163b6121875760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a1d565b508161203f565b61203f83838151156121a35781518083602001fd5b8060405162461bcd60e51b8152600401610a1d9190612213565b6000602082840312156121cf57600080fd5b81356001600160e01b031981168114610d1557600080fd5b60005b838110156122025781810151838201526020016121ea565b838111156117ab5750506000910152565b60208152600082518060208401526122328160408501602087016121e7565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461225d57600080fd5b919050565b6000806040838503121561227557600080fd5b61227e83612246565b946020939093013593505050565b60006020828403121561229e57600080fd5b5035919050565b6000806000606084860312156122ba57600080fd5b6122c384612246565b92506122d160208501612246565b9150604084013590509250925092565b600080604083850312156122f457600080fd5b8235915061230460208401612246565b90509250929050565b60006020828403121561231f57600080fd5b610d1582612246565b8015158114610b3357600080fd5b60008060006060848603121561234b57600080fd5b8335925060208401359150604084013561236481612328565b809150509250925092565b6000806040838503121561238257600080fd5b50508035926020909101359150565b600080600080600080600060e0888a0312156123ac57600080fd5b6123b588612246565b96506123c360208901612246565b95506040880135945060608801359350608088013560ff811681146123e757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561241757600080fd5b61242083612246565b915061230460208401612246565b600181811c9082168061244257607f821691505b6020821081141561246357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561249357612493612469565b5060010190565b60008160001904831182151516156124b4576124b4612469565b500290565b6000826124d657634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156124ed576124ed612469565b500390565b6000821982111561250557612505612469565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125428160178501602088016121e7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125738160288401602088016121e7565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125a757600080fd5b8151610d1581612328565b634e487b7160e01b600052604160045260246000fd5b6000816125d7576125d7612469565b506000190190565b634e487b7160e01b600052603160045260246000fd5b600082516126078184602087016121e7565b919091019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220c34382b9b721300da1f940b79afd6fbf589e54f1d22c69e2ea91437d4edd6b5864736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061027f5760003560e01c8063715018a61161015c5780639a6400cd116100ce578063d505accf11610087578063d505accf146105b6578063d5391393146105c9578063d547741f146105f0578063dd62ed3e14610603578063ec342ad01461063c578063f2fde38b1461064b57600080fd5b80639a6400cd1461054f578063a217fddf14610562578063a457c2d71461056a578063a9059cbb1461057d578063ca15c87314610590578063cea9d26f146105a357600080fd5b80638da5cb5b116101205780638da5cb5b146104e05780639010d07c14610505578063917505f41461051857806391d148541461052b57806395d89b411461053e57806397d63f931461054657600080fd5b8063715018a61461046b57806379cc6790146104735780637af548c1146104865780637ecebe001461049957806383eb70e5146104b957600080fd5b8063313ce567116101f55780633af9e669116101b95780633af9e669146103ef57806340c10f191461041857806342966c681461042b5780635cd37b0f1461043e57806364dd48f51461044757806370a082311461045857600080fd5b8063313ce5671461039e578063336d2692146103ad5780633644e515146103c057806336568abe146103c957806339509351146103dc57600080fd5b806318160ddd1161024757806318160ddd146102fd57806320606b701461030557806323b872dd1461032c578063248a9ca31461033f5780632f2ff15d1461036257806330adf81f1461037757600080fd5b806301ffc9a71461028457806306fdde03146102ac578063095ea7b3146102c157806311391924146102d457806311d3e6c4146102f5575b600080fd5b6102976102923660046121bd565b61065e565b60405190151581526020015b60405180910390f35b6102b4610689565b6040516102a39190612213565b6102976102cf366004612262565b61071b565b6102e76102e236600461228c565b610775565b6040519081526020016102a3565b6102e7610780565b6010546102e7565b6102e77f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61029761033a3660046122a5565b61078f565b6102e761034d36600461228c565b60009081526020819052604090206001015490565b6103756103703660046122e1565b6108c4565b005b6102e77f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016102a3565b6102976103bb366004612262565b6108ee565b6102e7600b5481565b6103756103d73660046122e1565b6109b1565b6102976103ea366004612262565b610a34565b6102e76103fd36600461230d565b6001600160a01b03166000908152600d602052604090205490565b610297610426366004612262565b610aa7565b61037561043936600461228c565b610b2a565b6102e760095481565b6102e769d3c21bcecceda100000081565b6102e761046636600461230d565b610b36565b610375610b58565b610375610481366004612262565b610b6c565b6102e7610494366004612336565b610b81565b6102e76104a736600461230d565b600a6020526000908152604090205481565b6102e77f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b6104ed61051336600461236f565b610d1c565b610297610526366004612262565b610d34565b6102976105393660046122e1565b610dae565b6102b4610dd7565b6102e760085481565b6102e761055d36600461228c565b610de6565b6102e7600081565b610297610578366004612262565b610df1565b61029761058b366004612262565b610eb9565b6102e761059e36600461228c565b610f8b565b6102976105b13660046122a5565b610fa2565b6103756105c4366004612391565b610fc1565b6102e77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103756105fe3660046122e1565b611243565b6102e7610611366004612404565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b6102e7670de0b6b3a764000081565b61037561065936600461230d565b611268565b60006001600160e01b03198216635a05180f60e01b148061068357506106838261138f565b92915050565b6060600580546106989061242e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c49061242e565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b336000818152600e602090815260408083206001600160a01b03871680855292528083208590555191929091600080516020612632833981519152906107649086815260200190565b60405180910390a350600192915050565b6000610683826113c4565b600061078a6113e9565b905090565b6000826001600160a01b0381163014156107a857600080fd5b6001600160a01b0381166107bb57600080fd5b6001600160a01b0385166000908152600e602090815260408083203384529091529020546107e990846113fb565b6001600160a01b0386166000908152600e6020908152604080832033845290915281209190915561081984611407565b6001600160a01b0387166000908152600d602052604090205490915061083f90826113fb565b6001600160a01b038088166000908152600d6020526040808220939093559087168152205461086e9082611425565b6001600160a01b038087166000818152600d60205260409081902093909355915190881690600080516020612612833981519152906108b09088815260200190565b60405180910390a350600195945050505050565b6000828152602081905260409020600101546108df81611431565b6108e9838361143b565b505050565b6000826001600160a01b03811630141561090757600080fd5b6001600160a01b03811661091a57600080fd5b336000908152600d602052604090205461093490846113fb565b336000908152600d6020526040808220929092556001600160a01b038616815220546109609084611425565b6001600160a01b0385166000818152600d602052604090209190915533600080516020612612833981519152610995866113c4565b6040519081526020015b60405180910390a35060019392505050565b6001600160a01b0381163314610a265760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b610a30828261145d565b5050565b336000908152600e602090815260408083206001600160a01b0386168452909152812054610a629083611425565b336000818152600e602090815260408083206001600160a01b038916808552908352928190208590555193845290926000805160206126328339815191529101610764565b6000610ad37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dae565b610b175760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a1d565b610b21838361147f565b50600192915050565b610b33816115b4565b50565b6001600160a01b0381166000908152600d6020526040812054610683906113c4565b610b60611673565b610b6a60006116cd565b565b610b7782338361171f565b610a3082826117b1565b6000610bad7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610dae565b610bf15760405162461bcd60e51b8152602060048201526015602482015274149958985cd95c881c9bdb19481c995c5d5a5c9959605a1b6044820152606401610a1d565b82610c4257600954604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150601054610d15565b60095482610c7a57610c72670de0b6b3a7640000610c6c610c6382886113fb565b600954906112de565b906112ea565b600955610cbe565b6000610c95670de0b6b3a7640000610c6c610c638289611425565b9050610c9f6113e9565b811015610cb0576009819055610cbc565b610cb86113e9565b6009555b505b600954604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a1610d0c6008546113c4565b60108190559150505b9392505050565b6000828152600160205260408120610d1590836118d3565b6000610d607f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610dae565b610da45760405162461bcd60e51b81526020600482015260156024820152744d7573742068617665206d696e74657220726f6c6560581b6044820152606401610a1d565b610b2183836118df565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546106989061242e565b600061068382611407565b336000908152600e602090815260408083206001600160a01b0386168452909152812054808310610e4557336000908152600e602090815260408083206001600160a01b0388168452909152812055610e74565b610e4f81846113fb565b336000908152600e602090815260408083206001600160a01b03891684529091529020555b336000818152600e602090815260408083206001600160a01b03891680855290835292819020549051908152919291600080516020612632833981519152910161099f565b6000826001600160a01b038116301415610ed257600080fd5b6001600160a01b038116610ee557600080fd5b6000610ef084611407565b336000908152600d6020526040902054909150610f0d90826113fb565b336000908152600d6020526040808220929092556001600160a01b03871681522054610f399082611425565b6001600160a01b0386166000818152600d602052604090819020929092559051339060008051602061261283398151915290610f789088815260200190565b60405180910390a3506001949350505050565b600081815260016020526040812061068390611a0b565b6000610fac611673565b610fb7848484611a15565b5060019392505050565b834211156110075760405162461bcd60e51b815260206004820152601360248201527211105392cbdc195c9b5a5d0b595e1c1a5c9959606a1b6044820152606401610a1d565b600b546001600160a01b0388166000908152600a6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b91908761105a8361247f565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016110d392919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506001600160a01b03881661113c5760405162461bcd60e51b8152602060048201526016602482015275044414e4b2f696e76616c69642d616464726573732d360541b6044820152606401610a1d565b60408051600081526020810180835283905260ff861691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa15801561118f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146111ef5760405162461bcd60e51b815260206004820152601360248201527211105392cbda5b9d985b1a590b5c195c9b5a5d606a1b6044820152606401610a1d565b6001600160a01b038881166000818152600e60209081526040808320948c16808452948252918290208a90559051898152600080516020612632833981519152910160405180910390a35050505050505050565b60008281526020819052604090206001015461125e81611431565b6108e9838361145d565b611270611673565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1d565b610b33816116cd565b6000610d15828461249a565b6000610d1582846124b9565b6113008282610dae565b610a30576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113363390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610d15836001600160a01b038416611a67565b60006001600160e01b03198216637965db0b60e01b148061068357506301ffc9a760e01b6001600160e01b0319831614610683565b600061068369d3c21bcecceda1000000610c6c600954856112de90919063ffffffff16565b600060085460001961078a91906124b9565b6000610d1582846124db565b60095460009061068390610c6c8469d3c21bcecceda10000006112de565b6000610d1582846124f2565b610b338133611ab6565b61144582826112f6565b60008281526001602052604090206108e9908261137a565b6114678282611b0f565b60008281526001602052604090206108e99082611b74565b60105461148c9082611425565b601055600061149a82611407565b6008549091506114aa9082611425565b6008556114b56113e9565b60095411156115065760405162461bcd60e51b815260206004820152601a60248201527f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000006044820152606401610a1d565b6001600160a01b0383166000908152600d60205260409020546115299082611425565b6001600160a01b0384166000818152600d60209081526040918290209390935580519182529181018490527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518281526001600160a01b03841690600090600080516020612612833981519152906020015b60405180910390a3505050565b6010546115c190826113fb565b60105560006115cf82611407565b6008549091506115df90826113fb565b600855336000908152600d60205260409020546115fc90826113fb565b336000818152600d60209081526040918290209390935580519182529181018490527fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5910160405180910390a160405182815260009033906000805160206126128339815191529060200160405180910390a35050565b6007546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600e602090815260408083209386168352929052205460001981146117ab578181101561179e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a1d565b6117ab8484848403611b89565b50505050565b6001600160a01b0382166118115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a1d565b6001600160a01b038216600090815260026020526040902054818110156118855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a1d565b6001600160a01b0383166000818152600260209081526040808320868603905560048054879003905551858152919291600080516020612612833981519152910160405180910390a3505050565b6000610d158383611c93565b6008546118ec9082611425565b60085560006118fa826113c4565b60105490915061190a9082611425565b6010556119156113e9565b60095411156119665760405162461bcd60e51b815260206004820152601d60248201527f7363616c696e6720666163746f72206c6f776572207468616e206d61780000006044820152606401610a1d565b6001600160a01b0383166000908152600d60205260409020546119899083611425565b6001600160a01b0384166000818152600d60209081526040918290209390935580519182529181018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a16040518181526001600160a01b03841690600090600080516020612612833981519152906020016115a7565b6000610683825490565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108e9908490611cbd565b6000818152600183016020526040812054611aae57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610683565b506000610683565b611ac08282610dae565b610a3057611acd81611d8f565b611ad8836020611da1565b604051602001611ae992919061250a565b60408051601f198184030181529082905262461bcd60e51b8252610a1d91600401612213565b611b198282610dae565b15610a30576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610d15836001600160a01b038416611f3d565b6001600160a01b038316611beb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1d565b6001600160a01b038216611c4c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1d565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020859055905184815260008051602061263283398151915291016115a7565b6000826000018281548110611caa57611caa61257f565b9060005260206000200154905092915050565b6000611d12826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120309092919063ffffffff16565b8051909150156108e95780806020019051810190611d309190612595565b6108e95760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a1d565b60606106836001600160a01b03831660145b60606000611db083600261249a565b611dbb9060026124f2565b67ffffffffffffffff811115611dd357611dd36125b2565b6040519080825280601f01601f191660200182016040528015611dfd576020820181803683370190505b509050600360fc1b81600081518110611e1857611e1861257f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e4757611e4761257f565b60200101906001600160f81b031916908160001a9053506000611e6b84600261249a565b611e769060016124f2565b90505b6001811115611eee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eaa57611eaa61257f565b1a60f81b828281518110611ec057611ec061257f565b60200101906001600160f81b031916908160001a90535060049490941c93611ee7816125c8565b9050611e79565b508315610d155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a1d565b60008181526001830160205260408120548015612026576000611f616001836124db565b8554909150600090611f75906001906124db565b9050818114611fda576000866000018281548110611f9557611f9561257f565b9060005260206000200154905080876000018481548110611fb857611fb861257f565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611feb57611feb6125df565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610683565b6000915050610683565b606061203f8484600085612047565b949350505050565b6060824710156120a85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a1d565b600080866001600160a01b031685876040516120c491906125f5565b60006040518083038185875af1925050503d8060008114612101576040519150601f19603f3d011682016040523d82523d6000602084013e612106565b606091505b509150915061211787838387612122565b979650505050505050565b6060831561218e578251612187576001600160a01b0385163b6121875760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a1d565b508161203f565b61203f83838151156121a35781518083602001fd5b8060405162461bcd60e51b8152600401610a1d9190612213565b6000602082840312156121cf57600080fd5b81356001600160e01b031981168114610d1557600080fd5b60005b838110156122025781810151838201526020016121ea565b838111156117ab5750506000910152565b60208152600082518060208401526122328160408501602087016121e7565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461225d57600080fd5b919050565b6000806040838503121561227557600080fd5b61227e83612246565b946020939093013593505050565b60006020828403121561229e57600080fd5b5035919050565b6000806000606084860312156122ba57600080fd5b6122c384612246565b92506122d160208501612246565b9150604084013590509250925092565b600080604083850312156122f457600080fd5b8235915061230460208401612246565b90509250929050565b60006020828403121561231f57600080fd5b610d1582612246565b8015158114610b3357600080fd5b60008060006060848603121561234b57600080fd5b8335925060208401359150604084013561236481612328565b809150509250925092565b6000806040838503121561238257600080fd5b50508035926020909101359150565b600080600080600080600060e0888a0312156123ac57600080fd5b6123b588612246565b96506123c360208901612246565b95506040880135945060608801359350608088013560ff811681146123e757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561241757600080fd5b61242083612246565b915061230460208401612246565b600181811c9082168061244257607f821691505b6020821081141561246357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561249357612493612469565b5060010190565b60008160001904831182151516156124b4576124b4612469565b500290565b6000826124d657634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156124ed576124ed612469565b500390565b6000821982111561250557612505612469565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125428160178501602088016121e7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125738160288401602088016121e7565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125a757600080fd5b8151610d1581612328565b634e487b7160e01b600052604160045260246000fd5b6000816125d7576125d7612469565b506000190190565b634e487b7160e01b600052603160045260246000fd5b600082516126078184602087016121e7565b919091019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220c34382b9b721300da1f940b79afd6fbf589e54f1d22c69e2ea91437d4edd6b5864736f6c63430008090033
Deployed Bytecode Sourcemap
1064:10456:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619:212:1;;;;;;:::i;:::-;;:::i;:::-;;;470:14:21;;463:22;445:41;;433:2;418:18;619:212:1;;;;;;;;2133:98:6;;;:::i;:::-;;;;;;;:::i;7315:239:4:-;;;;;;:::i;:::-;;:::i;10981:113::-;;;;;;:::i;:::-;;:::i;:::-;;;1916:25:21;;;1904:2;1889:18;10981:113:4;1770:177:21;2796:103:4;;;:::i;2677:98::-;2756:12;;2677:98;;1710:152;;1760:102;1710:152;;6300:510;;;;;;:::i;:::-;;:::i;4343:129:0:-;;;;;;:::i;:::-;4417:7;4443:12;;;;;;;;;;:22;;;;4343:129;4768:145;;;;;;:::i;:::-;;:::i;:::-;;1548:116:4;;1598:66;1548:116;;3070:91:6;;;3152:2;3053:36:21;;3041:2;3026:18;3070:91:6;2911:184:21;5401:424:4;;;;;;:::i;:::-;;:::i;1406:31::-;;;;;;5877:214:0;;;;;;:::i;:::-;;:::i;7599:404:4:-;;;;;;:::i;:::-;;:::i;6952:114::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7041:18:4;7015:7;7041:18;;;:13;:18;;;;;;;6952:114;3182:217;;;;;;:::i;:::-;;:::i;3895:76::-;;;;;;:::i;:::-;;:::i;1222:32::-;;;;;;1303:49;;1346:6;1303:49;;6816:130;;;;;;:::i;:::-;;:::i;1824:101:16:-;;;:::i;959:161:7:-;;;;;;:::i;:::-;;:::i;8608:1182:4:-;;;;;;:::i;:::-;;:::i;1358:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;392:64:8;;431:25;392:64;;1194:85:16;1266:6;;-1:-1:-1;;;;;1266:6:16;1194:85;;;-1:-1:-1;;;;;3960:32:21;;;3942:51;;3930:2;3915:18;1194:85:16;3796:203:21;1416:151:1;;;;;;:::i;:::-;;:::i;4608:218:4:-;;;;;;:::i;:::-;;:::i;2860:145:0:-;;;;;;:::i;:::-;;:::i;2344:102:6:-;;;:::i;1191:25:4:-;;;;;;11100:115;;;;;;:::i;:::-;;:::i;1992:49:0:-;;2037:4;1992:49;;8009:593:4;;;;;;:::i;:::-;;:::i;5831:463::-;;;;;;:::i;:::-;;:::i;1735:140:1:-;;;;;;:::i;:::-;;:::i;9796:214:4:-;;;;;;:::i;:::-;;:::i;10016:959::-;;;;;;:::i;:::-;;:::i;324:62:8:-;;362:24;324:62;;5193:147:0;;;;;;:::i;:::-;;:::i;7072:181:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;7212:25:4;;;7186:7;7212:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;7072:181;1260:37;;1291:6;1260:37;;2074:198:16;;;;;;:::i;:::-;;:::i;619:212:1:-;704:4;-1:-1:-1;;;;;;727:57:1;;-1:-1:-1;;;727:57:1;;:97;;;788:36;812:11;788:23;:36::i;:::-;720:104;619:212;-1:-1:-1;;619:212:1:o;2133:98:6:-;2187:13;2219:5;2212:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98;:::o;7315:239:4:-;7447:10;7413:4;7429:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;7429:38:4;;;;;;;;;;:46;;;7490:36;7413:4;;7429:38;;-1:-1:-1;;;;;;;;;;;7490:36:4;;;7470:5;1916:25:21;;1904:2;1889:18;;1770:177;7490:36:4;;;;;;;;-1:-1:-1;7543:4:4;7315:239;;;;:::o;10981:113::-;11040:7;11066:21;11082:4;11066:15;:21::i;2796:103::-;2847:7;2873:19;:17;:19::i;:::-;2866:26;;2796:103;:::o;6300:510::-;6437:4;6424:2;-1:-1:-1;;;;;2278:19:4;;2292:4;2278:19;;2270:28;;;;;;-1:-1:-1;;;;;2316:18:4;;2308:27;;;;;;-1:-1:-1;;;;;6491:23:4;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;6528:10:::1;6491:57:::0;;;;;;;;:68:::1;::::0;6553:5;6491:61:::1;:68::i;:::-;-1:-1:-1::0;;;;;6453:23:4;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;6477:10:::1;6453:35:::0;;;;;;;:106;;;;6590:22:::1;6606:5:::0;6590:15:::1;:22::i;:::-;-1:-1:-1::0;;;;;6645:19:4;::::1;;::::0;;;:13:::1;:19;::::0;;;;;6570:42;;-1:-1:-1;6645:34:4::1;::::0;6570:42;6645:23:::1;:34::i;:::-;-1:-1:-1::0;;;;;6623:19:4;;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:56;;;;6709:17;;::::1;::::0;;;;:32:::1;::::0;6731:9;6709:21:::1;:32::i;:::-;-1:-1:-1::0;;;;;6689:17:4;;::::1;;::::0;;;:13:::1;:17;::::0;;;;;;:52;;;;6756:25;;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;6756:25:4;::::1;::::0;6775:5;1916:25:21;;1904:2;1889:18;;1770:177;6756:25:4::1;;;;;;;;-1:-1:-1::0;6799:4:4::1;::::0;6300:510;-1:-1:-1;;;;;6300:510:4:o;4768:145:0:-;4417:7;4443:12;;;;;;;;;;:22;;;2470:16;2481:4;2470:10;:16::i;:::-;4881:25:::1;4892:4;4898:7;4881:10;:25::i;:::-;4768:145:::0;;;:::o;5401:424:4:-;5515:4;5494:2;-1:-1:-1;;;;;2278:19:4;;2292:4;2278:19;;2270:28;;;;;;-1:-1:-1;;;;;2316:18:4;;2308:27;;;;;;5615:10:::1;5601:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;5631:5;5601:29:::1;:36::i;:::-;5587:10;5573:25;::::0;;;:13:::1;:25;::::0;;;;;:64;;;;-1:-1:-1;;;;;5706:17:4;::::1;::::0;;;;:28:::1;::::0;5728:5;5706:21:::1;:28::i;:::-;-1:-1:-1::0;;;;;5686:17:4;::::1;;::::0;;;:13:::1;:17;::::0;;;;:48;;;;5758:10:::1;-1:-1:-1::0;;;;;;;;;;;5774:22:4::1;5790:5:::0;5774:15:::1;:22::i;:::-;5749:48;::::0;1916:25:21;;;1904:2;1889:18;5749:48:4::1;;;;;;;;-1:-1:-1::0;5814:4:4::1;::::0;5401:424;-1:-1:-1;;;5401:424:4:o;5877:214:0:-;-1:-1:-1;;;;;5972:23:0;;719:10:3;5972:23:0;5964:83;;;;-1:-1:-1;;;5964:83:0;;5807:2:21;5964:83:0;;;5789:21:21;5846:2;5826:18;;;5819:30;5885:34;5865:18;;;5858:62;-1:-1:-1;;;5936:18:21;;;5929:45;5991:19;;5964:83:0;;;;;;;;;6058:26;6070:4;6076:7;6058:11;:26::i;:::-;5877:214;;:::o;7599:404:4:-;7787:10;7712:4;7769:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;7769:60:4;;;;;;;;;;:76;;7834:10;7769:64;:76::i;:::-;7746:10;7728:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;7728:38:4;;;;;;;;;;;;:117;;;7860:115;1916:25:21;;;7728:38:4;;-1:-1:-1;;;;;;;;;;;7860:115:4;1889:18:21;7860:115:4;1770:177:21;3182:217:4;3260:4;3284:34;362:24:8;719:10:3;2860:145:0;:::i;3284:34:4:-;3276:68;;;;-1:-1:-1;;;3276:68:4;;6223:2:21;3276:68:4;;;6205:21:21;6262:2;6242:18;;;6235:30;-1:-1:-1;;;6281:18:21;;;6274:51;6342:18;;3276:68:4;6021:345:21;3276:68:4;3354:17;3360:2;3364:6;3354:5;:17::i;:::-;-1:-1:-1;3388:4:4;3182:217;;;;:::o;3895:76::-;3951:13;3957:6;3951:5;:13::i;:::-;3895:76;:::o;6816:130::-;-1:-1:-1;;;;;6920:18:4;;6878:7;6920:18;;;:13;:18;;;;;;6904:35;;:15;:35::i;1824:101:16:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;959:161:7:-;1035:46;1051:7;719:10:3;1074:6:7;1035:15;:46::i;:::-;1091:22;1097:7;1106:6;1091:5;:22::i;8608:1182:4:-;8720:7;8747:35;431:25:8;719:10:3;2860:145:0;:::i;8747:35:4:-;8739:69;;;;-1:-1:-1;;;8739:69:4;;6573:2:21;8739:69:4;;;6555:21:21;6612:2;6592:18;;;6585:30;-1:-1:-1;;;6631:18:21;;;6624:51;6692:18;;8739:69:4;6371:345:21;8739:69:4;8823:15;8819:135;;8873:17;;8859:51;;;6923:25:21;;;6979:2;6964:18;;6957:34;;;7007:18;;;7000:34;;;;8859:51:4;;;;;;6911:2:21;8859:51:4;;;-1:-1:-1;8931:12:4;;8924:19;;8819:135;8996:17;;9029:8;9024:608;;9129:87;1291:6;9129:60;9168:20;1291:6;9177:10;9168:8;:20::i;:::-;9129:17;;;:38;:60::i;:::-;:81;;:87::i;:::-;9109:17;:107;9024:608;;;9303:24;9330:87;1291:6;9330:60;9369:20;1291:6;9378:10;9369:8;:20::i;9330:87::-;9303:114;;9454:19;:17;:19::i;:::-;9435:16;:38;9431:191;;;9493:17;:36;;;9431:191;;;9588:19;:17;:19::i;:::-;9568:17;:39;9431:191;9233:399;9024:608;9684:17;;9647:55;;;6923:25:21;;;6979:2;6964:18;;6957:34;;;7007:18;;;7000:34;;;;9647:55:4;;;;;;6911:2:21;9647:55:4;;;9727:27;9743:10;;9727:15;:27::i;:::-;9712:12;:42;;;;-1:-1:-1;;8608:1182:4;;;;;;:::o;1416:151:1:-;1506:7;1532:18;;;:12;:18;;;;;:28;;1554:5;1532:21;:28::i;4608:218:4:-;4676:4;4700:34;362:24:8;719:10:3;2860:145:0;:::i;4700:34:4:-;4692:68;;;;-1:-1:-1;;;4692:68:4;;6223:2:21;4692:68:4;;;6205:21:21;6262:2;6242:18;;;6235:30;-1:-1:-1;;;6281:18:21;;;6274:51;6342:18;;4692:68:4;6021:345:21;4692:68:4;4771:27;4787:2;4791:6;4771:15;:27::i;2860:145:0:-;2946:4;2969:12;;;;;;;;;;;-1:-1:-1;;;;;2969:29:0;;;;;;;;;;;;;;;2860:145::o;2344:102:6:-;2400:13;2432:7;2425:14;;;;;:::i;11100:115:4:-;11160:7;11186:22;11202:5;11186:15;:22::i;8009:593::-;8184:10;8127:4;8166:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;8166:38:4;;;;;;;;;;8218:27;;;8214:231;;8279:10;8302:1;8261:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;8261:38:4;;;;;;;;;:42;8214:231;;;8375:59;:8;8405:15;8375:12;:59::i;:::-;8352:10;8334:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;8334:38:4;;;;;;;;;:100;8214:231;8481:10;8526:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;8459:115:4;;8526:38;;;;;;;;;;;8459:115;;1916:25:21;;;8459:115:4;;8481:10;-1:-1:-1;;;;;;;;;;;8459:115:4;1889:18:21;8459:115:4;1770:177:21;5831:463:4;5952:4;5931:2;-1:-1:-1;;;;;2278:19:4;;2292:4;2278:19;;2270:28;;;;;;-1:-1:-1;;;;;2316:18:4;;2308:27;;;;;;6035:17:::1;6055:22;6071:5;6055:15;:22::i;:::-;6130:10;6116:25;::::0;;;:13:::1;:25;::::0;;;;;6035:42;;-1:-1:-1;6116:40:4::1;::::0;6035:42;6116:29:::1;:40::i;:::-;6102:10;6088:25;::::0;;;:13:::1;:25;::::0;;;;;:68;;;;-1:-1:-1;;;;;6187:17:4;::::1;::::0;;;;:32:::1;::::0;6209:9;6187:21:::1;:32::i;:::-;-1:-1:-1::0;;;;;6167:17:4;::::1;;::::0;;;:13:::1;:17;::::0;;;;;;:52;;;;6234:31;;6243:10:::1;::::0;-1:-1:-1;;;;;;;;;;;6234:31:4;::::1;::::0;6259:5;1916:25:21;;1904:2;1889:18;;1770:177;6234:31:4::1;;;;;;;;-1:-1:-1::0;6283:4:4::1;::::0;5831:463;-1:-1:-1;;;;5831:463:4:o;1735:140:1:-;1815:7;1841:18;;;:12;:18;;;;;:27;;:25;:27::i;9796:214:4:-;9917:4;1087:13:16;:11;:13::i;:::-;9933:49:4::1;9963:5;9971:2;9975:6;9933:22;:49::i;:::-;-1:-1:-1::0;9999:4:4::1;9796:214:::0;;;;;:::o;10016:959::-;10234:8;10215:15;:27;;10207:59;;;;-1:-1:-1;;;10207:59:4;;7247:2:21;10207:59:4;;;7229:21:21;7286:2;7266:18;;;7259:30;-1:-1:-1;;;7305:18:21;;;7298:49;7364:18;;10207:59:4;7045:343:21;10207:59:4;10379:16;;-1:-1:-1;;;;;10616:13:4;;10277:14;10616:13;;;:6;:13;;;;;:15;;10277:14;;10379:16;1598:66;;10521:5;;10552:7;;10585:5;;10616:15;10277:14;10616:15;;;:::i;:::-;;;;-1:-1:-1;10444:243:4;;;;;;7952:25:21;;;;-1:-1:-1;;;;;8051:15:21;;;8031:18;;;8024:43;8103:15;;;;8083:18;;;8076:43;8135:18;;;8128:34;8178:19;;;8171:35;8222:19;;;8215:35;;;7924:19;;10444:243:4;;;;;;;;;;;;10413:292;;;;;;10317:402;;;;;;;;-1:-1:-1;;;8519:27:21;;8571:1;8562:11;;8555:27;;;;8607:2;8598:12;;8591:28;8644:2;8635:12;;8261:392;10317:402:4;;;;-1:-1:-1;;10317:402:4;;;;;;;;;10294:435;;10317:402;10294:435;;;;;-1:-1:-1;;;;;;10748:19:4;;10740:54;;;;-1:-1:-1;;;10740:54:4;;8860:2:21;10740:54:4;;;8842:21:21;8899:2;8879:18;;;8872:30;-1:-1:-1;;;8918:18:21;;;8911:52;8980:18;;10740:54:4;8658:346:21;10740:54:4;10821:26;;;;;;;;;;;;9236:25:21;;;9309:4;9297:17;;9277:18;;;9270:45;;;;9331:18;;;9324:34;;;9374:18;;;9367:34;;;10821:26:4;;9208:19:21;;10821:26:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10812:35:4;:5;-1:-1:-1;;;;;10812:35:4;;10804:67;;;;-1:-1:-1;;;10804:67:4;;9614:2:21;10804:67:4;;;9596:21:21;9653:2;9633:18;;;9626:30;-1:-1:-1;;;9672:18:21;;;9665:49;9731:18;;10804:67:4;9412:343:21;10804:67:4;-1:-1:-1;;;;;10881:24:4;;;;;;;:17;:24;;;;;;;;:33;;;;;;;;;;;;;:41;;;10937:31;;1916:25:21;;;-1:-1:-1;;;;;;;;;;;10937:31:4;1889:18:21;10937:31:4;;;;;;;10197:778;10016:959;;;;;;;:::o;5193:147:0:-;4417:7;4443:12;;;;;;;;;;:22;;;2470:16;2481:4;2470:10;:16::i;:::-;5307:26:::1;5319:4;5325:7;5307:11;:26::i;2074:198:16:-:0;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:16;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:16;;9962:2:21;2154:73:16::1;::::0;::::1;9944:21:21::0;10001:2;9981:18;;;9974:30;10040:34;10020:18;;;10013:62;-1:-1:-1;;;10091:18:21;;;10084:36;10137:19;;2154:73:16::1;9760:402:21::0;2154:73:16::1;2237:28;2256:8;2237:18;:28::i;3465:96:18:-:0;3523:7;3549:5;3553:1;3549;:5;:::i;3850:96::-;3908:7;3934:5;3938:1;3934;:5;:::i;7426:233:0:-;7509:22;7517:4;7523:7;7509;:22::i;:::-;7504:149;;7547:6;:12;;;;;;;;;;;-1:-1:-1;;;;;7547:29:0;;;;;;;;;:36;;-1:-1:-1;;7547:36:0;7579:4;7547:36;;;7629:12;719:10:3;;640:96;7629:12:0;-1:-1:-1;;;;;7602:40:0;7620:7;-1:-1:-1;;;;;7602:40:0;7614:4;7602:40;;;;;;;;;;7426:233;;:::o;8297:150:9:-;8367:4;8390:50;8395:3;-1:-1:-1;;;;;8415:23:9;;8390:4;:50::i;2571:202:0:-;2656:4;-1:-1:-1;;;;;;2679:47:0;;-1:-1:-1;;;2679:47:0;;:87;;-1:-1:-1;;;;;;;;;;937:40:5;;;2730:36:0;829:155:5;11221:144:4;11283:7;11309:49;1346:6;11309:27;11318:17;;11309:4;:8;;:27;;;;:::i;2988:188::-;3040:7;3159:10;;-1:-1:-1;;3137:32:4;;;;:::i;3122:96:18:-;3180:7;3206:5;3210:1;3206;:5;:::i;11371:146:4:-;11492:17;;11434:7;;11460:50;;:27;:5;1346:6;11460:9;:27::i;2755:96:18:-;2813:7;2839:5;2843:1;2839;:5;:::i;3299:103:0:-;3365:30;3376:4;719:10:3;3365::0;:30::i;1963:166:1:-;2050:31;2067:4;2073:7;2050:16;:31::i;:::-;2091:18;;;;:12;:18;;;;;:31;;2114:7;2091:22;:31::i;2218:171::-;2306:32;2324:4;2330:7;2306:17;:32::i;:::-;2348:18;;;;:12;:18;;;;;:34;;2374:7;2348:25;:34::i;3405:484:4:-;3491:12;;:24;;3508:6;3491:16;:24::i;:::-;3476:12;:39;3525:17;3545:23;3561:6;3545:15;:23::i;:::-;3591:10;;3525:43;;-1:-1:-1;3591:25:4;;3525:43;3591:14;:25::i;:::-;3578:10;:38;3669:19;:17;:19::i;:::-;3648:17;;:40;;3627:113;;;;-1:-1:-1;;;3627:113:4;;11027:2:21;3627:113:4;;;11009:21:21;11066:2;11046:18;;;11039:30;11105:28;11085:18;;;11078:56;11151:18;;3627:113:4;10825:350:21;3627:113:4;-1:-1:-1;;;;;3771:17:4;;;;;;:13;:17;;;;;;:32;;3793:9;3771:21;:32::i;:::-;-1:-1:-1;;;;;3751:17:4;;;;;;:13;:17;;;;;;;;;:52;;;;3819:16;;11354:51:21;;;11421:18;;;11414:34;;;3819:16:4;;11327:18:21;3819:16:4;;;;;;;3850:32;;1916:25:21;;;-1:-1:-1;;;;;3850:32:4;;;3867:1;;-1:-1:-1;;;;;;;;;;;3850:32:4;1904:2:21;1889:18;3850:32:4;;;;;;;;3466:423;3405:484;;:::o;3977:495::-;4074:12;;:24;;4091:6;4074:16;:24::i;:::-;4059:12;:39;4141:17;4161:23;4177:6;4161:15;:23::i;:::-;4239:10;;4141:43;;-1:-1:-1;4239:25:4;;4141:43;4239:14;:25::i;:::-;4226:10;:38;4345:10;4331:25;;;;:13;:25;;;;;;:40;;4361:9;4331:29;:40::i;:::-;4317:10;4303:25;;;;:13;:25;;;;;;;;;:68;;;;4386:24;;11354:51:21;;;11421:18;;;11414:34;;;4386:24:4;;11327:18:21;4386:24:4;;;;;;;4425:40;;1916:25:21;;;4454:1:4;;4434:10;;-1:-1:-1;;;;;;;;;;;4425:40:4;1904:2:21;1889:18;4425:40:4;;;;;;;4017:455;3977:495;:::o;1352:130:16:-;1266:6;;-1:-1:-1;;;;;1266:6:16;719:10:3;1415:23:16;1407:68;;;;-1:-1:-1;;;1407:68:16;;11661:2:21;1407:68:16;;;11643:21:21;;;11680:18;;;11673:30;11739:34;11719:18;;;11712:62;11791:18;;1407:68:16;11459:356:21;2426:187:16;2518:6;;;-1:-1:-1;;;;;2534:17:16;;;-1:-1:-1;;;;;;2534:17:16;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;11134:441:6:-;-1:-1:-1;;;;;7212:25:4;;;11264:24:6;7212:25:4;;;:17;:25;;;;;;;;:34;;;;;;;;;;-1:-1:-1;;11330:37:6;;11326:243;;11411:6;11391:16;:26;;11383:68;;;;-1:-1:-1;;;11383:68:6;;12022:2:21;11383:68:6;;;12004:21:21;12061:2;12041:18;;;12034:30;12100:31;12080:18;;;12073:59;12149:18;;11383:68:6;11820:353:21;11383:68:6;11493:51;11502:5;11509:7;11537:6;11518:16;:25;11493:8;:51::i;:::-;11254:321;11134:441;;;:::o;9401:659::-;-1:-1:-1;;;;;9484:21:6;;9476:67;;;;-1:-1:-1;;;9476:67:6;;12380:2:21;9476:67:6;;;12362:21:21;12419:2;12399:18;;;12392:30;12458:34;12438:18;;;12431:62;-1:-1:-1;;;12509:18:21;;;12502:31;12550:19;;9476:67:6;12178:397:21;9476:67:6;-1:-1:-1;;;;;9639:18:6;;9614:22;9639:18;;;:9;:18;;;;;;9675:24;;;;9667:71;;;;-1:-1:-1;;;9667:71:6;;12782:2:21;9667:71:6;;;12764:21:21;12821:2;12801:18;;;12794:30;12860:34;12840:18;;;12833:62;-1:-1:-1;;;12911:18:21;;;12904:32;12953:19;;9667:71:6;12580:398:21;9667:71:6;-1:-1:-1;;;;;9772:18:6;;;;;;:9;:18;;;;;;;;9793:23;;;9772:44;;9909:12;:22;;;;;;;9957:37;1916:25:21;;;9772:18:6;;;-1:-1:-1;;;;;;;;;;;9957:37:6;1889:18:21;9957:37:6;;;;;;;4768:145:0;;;:::o;9555:156:9:-;9629:7;9679:22;9683:3;9695:5;9679:3;:22::i;4869:526:4:-;4954:10;;:22;;4969:6;4954:14;:22::i;:::-;4941:10;:35;4986:20;5009:23;5025:6;5009:15;:23::i;:::-;5057:12;;4986:46;;-1:-1:-1;5057:30:4;;4986:46;5057:16;:30::i;:::-;5042:12;:45;5140:19;:17;:19::i;:::-;5119:17;;:40;;5098:116;;;;-1:-1:-1;;;5098:116:4;;13185:2:21;5098:116:4;;;13167:21:21;13224:2;13204:18;;;13197:30;13263:31;13243:18;;;13236:59;13312:18;;5098:116:4;12983:353:21;5098:116:4;-1:-1:-1;;;;;5268:17:4;;;;;;:13;:17;;;;;;:29;;5290:6;5268:21;:29::i;:::-;-1:-1:-1;;;;;5248:17:4;;;;;;:13;:17;;;;;;;;;:49;;;;5313:22;;11354:51:21;;;11421:18;;;11414:34;;;5313:22:4;;11327:18:21;5313:22:4;;;;;;;5350:38;;1916:25:21;;;-1:-1:-1;;;;;5350:38:4;;;5367:1;;-1:-1:-1;;;;;;;;;;;5350:38:4;1904:2:21;1889:18;5350:38:4;1770:177:21;9098:115:9;9161:7;9187:19;9195:3;4537:18;;4455:107;737:205:17;876:58;;;-1:-1:-1;;;;;11372:32:21;;876:58:17;;;11354:51:21;11421:18;;;;11414:34;;;876:58:17;;;;;;;;;;11327:18:21;;;;876:58:17;;;;;;;;-1:-1:-1;;;;;876:58:17;-1:-1:-1;;;876:58:17;;;849:86;;869:5;;849:19;:86::i;2206:404:9:-;2269:4;4343:19;;;:12;;;:19;;;;;;2285:319;;-1:-1:-1;2327:23:9;;;;;;;;:11;:23;;;;;;;;;;;;;2507:18;;2485:19;;;:12;;;:19;;;;;;:40;;;;2539:11;;2285:319;-1:-1:-1;2588:5:9;2581:12;;3683:479:0;3771:22;3779:4;3785:7;3771;:22::i;:::-;3766:390;;3954:28;3974:7;3954:19;:28::i;:::-;4053:38;4081:4;4088:2;4053:19;:38::i;:::-;3861:252;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3861:252:0;;;;;;;;;;-1:-1:-1;;;3809:336:0;;;;;;;:::i;7830:234::-;7913:22;7921:4;7927:7;7913;:22::i;:::-;7909:149;;;7983:5;7951:12;;;;;;;;;;;-1:-1:-1;;;;;7951:29:0;;;;;;;;;;:37;;-1:-1:-1;;7951:37:0;;;8007:40;719:10:3;;7951:12:0;;8007:40;;7983:5;8007:40;7830:234;;:::o;8615:156:9:-;8688:4;8711:53;8719:3;-1:-1:-1;;;;;8739:23:9;;8711:7;:53::i;10483:370:6:-;-1:-1:-1;;;;;10614:19:6;;10606:68;;;;-1:-1:-1;;;10606:68:6;;14334:2:21;10606:68:6;;;14316:21:21;14373:2;14353:18;;;14346:30;14412:34;14392:18;;;14385:62;-1:-1:-1;;;14463:18:21;;;14456:34;14507:19;;10606:68:6;14132:400:21;10606:68:6;-1:-1:-1;;;;;10692:21:6;;10684:68;;;;-1:-1:-1;;;10684:68:6;;14739:2:21;10684:68:6;;;14721:21:21;14778:2;14758:18;;;14751:30;14817:34;14797:18;;;14790:62;-1:-1:-1;;;14868:18:21;;;14861:32;14910:19;;10684:68:6;14537:398:21;10684:68:6;-1:-1:-1;;;;;10763:18:6;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10814:32;;1916:25:21;;;-1:-1:-1;;;;;;;;;;;10814:32:6;1889:18:21;10814:32:6;1770:177:21;4904:118:9;4971:7;4997:3;:11;;5009:5;4997:18;;;;;;;;:::i;:::-;;;;;;;;;4990:25;;4904:118;;;;:::o;3721:706:17:-;4140:23;4166:69;4194:4;4166:69;;;;;;;;;;;;;;;;;4174:5;-1:-1:-1;;;;;4166:27:17;;;:69;;;;;:::i;:::-;4249:17;;4140:95;;-1:-1:-1;4249:21:17;4245:176;;4344:10;4333:30;;;;;;;;;;;;:::i;:::-;4325:85;;;;-1:-1:-1;;;4325:85:17;;15524:2:21;4325:85:17;;;15506:21:21;15563:2;15543:18;;;15536:30;15602:34;15582:18;;;15575:62;-1:-1:-1;;;15653:18:21;;;15646:40;15703:19;;4325:85:17;15322:406:21;2097:149:19;2155:13;2187:52;-1:-1:-1;;;;;2199:22:19;;306:2;1508:437;1583:13;1608:19;1640:10;1644:6;1640:1;:10;:::i;:::-;:14;;1653:1;1640:14;:::i;:::-;1630:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1630:25:19;;1608:47;;-1:-1:-1;;;1665:6:19;1672:1;1665:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1665:15:19;;;;;;;;;-1:-1:-1;;;1690:6:19;1697:1;1690:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1690:15:19;;;;;;;;-1:-1:-1;1720:9:19;1732:10;1736:6;1732:1;:10;:::i;:::-;:14;;1745:1;1732:14;:::i;:::-;1720:26;;1715:128;1752:1;1748;:5;1715:128;;;-1:-1:-1;;;1795:5:19;1803:3;1795:11;1786:21;;;;;;;:::i;:::-;;;;1774:6;1781:1;1774:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;1774:33:19;;;;;;;;-1:-1:-1;1831:1:19;1821:11;;;;;1755:3;;;:::i;:::-;;;1715:128;;;-1:-1:-1;1860:10:19;;1852:55;;;;-1:-1:-1;;;1852:55:19;;16208:2:21;1852:55:19;;;16190:21:21;;;16227:18;;;16220:30;16286:34;16266:18;;;16259:62;16338:18;;1852:55:19;16006:356:21;2778:1388:9;2844:4;2981:19;;;:12;;;:19;;;;;;3015:15;;3011:1149;;3384:21;3408:14;3421:1;3408:10;:14;:::i;:::-;3456:18;;3384:38;;-1:-1:-1;3436:17:9;;3456:22;;3477:1;;3456:22;:::i;:::-;3436:42;;3510:13;3497:9;:26;3493:398;;3543:17;3563:3;:11;;3575:9;3563:22;;;;;;;;:::i;:::-;;;;;;;;;3543:42;;3714:9;3685:3;:11;;3697:13;3685:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3797:23;;;:12;;;:23;;;;;:36;;;3493:398;3969:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4061:3;:12;;:19;4074:5;4061:19;;;;;;;;;;;4054:26;;;4102:4;4095:11;;;;;;;3011:1149;4144:5;4137:12;;;;;3873:223:2;4006:12;4037:52;4059:6;4067:4;4073:1;4076:12;4037:21;:52::i;:::-;4030:59;3873:223;-1:-1:-1;;;;3873:223:2:o;4960:446::-;5125:12;5182:5;5157:21;:30;;5149:81;;;;-1:-1:-1;;;5149:81:2;;16701:2:21;5149:81:2;;;16683:21:21;16740:2;16720:18;;;16713:30;16779:34;16759:18;;;16752:62;-1:-1:-1;;;16830:18:21;;;16823:36;16876:19;;5149:81:2;16499:402:21;5149:81:2;5241:12;5255:23;5282:6;-1:-1:-1;;;;;5282:11:2;5301:5;5308:4;5282:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240:73;;;;5330:69;5357:6;5365:7;5374:10;5386:12;5330:26;:69::i;:::-;5323:76;4960:446;-1:-1:-1;;;;;;;4960:446:2:o;7466:628::-;7646:12;7674:7;7670:418;;;7701:17;;7697:286;;-1:-1:-1;;;;;1465:19:2;;;7908:60;;;;-1:-1:-1;;;7908:60:2;;17387:2:21;7908:60:2;;;17369:21:21;17426:2;17406:18;;;17399:30;17465:31;17445:18;;;17438:59;17514:18;;7908:60:2;17185:353:21;7908:60:2;-1:-1:-1;8003:10:2;7996:17;;7670:418;8044:33;8052:10;8064:12;8775:17;;:21;8771:379;;9003:10;8997:17;9059:15;9046:10;9042:2;9038:19;9031:44;8771:379;9126:12;9119:20;;-1:-1:-1;;;9119:20:2;;;;;;;;:::i;14:286:21:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:21;;209:43;;199:71;;266:1;263;256:12;497:258;569:1;579:113;593:6;590:1;587:13;579:113;;;669:11;;;663:18;650:11;;;643:39;615:2;608:10;579:113;;;710:6;707:1;704:13;701:48;;;-1:-1:-1;;745:1:21;727:16;;720:27;497:258::o;760:383::-;909:2;898:9;891:21;872:4;941:6;935:13;984:6;979:2;968:9;964:18;957:34;1000:66;1059:6;1054:2;1043:9;1039:18;1034:2;1026:6;1022:15;1000:66;:::i;:::-;1127:2;1106:15;-1:-1:-1;;1102:29:21;1087:45;;;;1134:2;1083:54;;760:383;-1:-1:-1;;760:383:21:o;1148:173::-;1216:20;;-1:-1:-1;;;;;1265:31:21;;1255:42;;1245:70;;1311:1;1308;1301:12;1245:70;1148:173;;;:::o;1326:254::-;1394:6;1402;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:29;1513:9;1494:29;:::i;:::-;1484:39;1570:2;1555:18;;;;1542:32;;-1:-1:-1;;;1326:254:21:o;1585:180::-;1644:6;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;-1:-1:-1;1736:23:21;;1585:180;-1:-1:-1;1585:180:21:o;2134:328::-;2211:6;2219;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2319:29;2338:9;2319:29;:::i;:::-;2309:39;;2367:38;2401:2;2390:9;2386:18;2367:38;:::i;:::-;2357:48;;2452:2;2441:9;2437:18;2424:32;2414:42;;2134:328;;;;;:::o;2652:254::-;2720:6;2728;2781:2;2769:9;2760:7;2756:23;2752:32;2749:52;;;2797:1;2794;2787:12;2749:52;2833:9;2820:23;2810:33;;2862:38;2896:2;2885:9;2881:18;2862:38;:::i;:::-;2852:48;;2652:254;;;;;:::o;3100:186::-;3159:6;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3251:29;3270:9;3251:29;:::i;3291:118::-;3377:5;3370:13;3363:21;3356:5;3353:32;3343:60;;3399:1;3396;3389:12;3414:377;3488:6;3496;3504;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3609:9;3596:23;3586:33;;3666:2;3655:9;3651:18;3638:32;3628:42;;3720:2;3709:9;3705:18;3692:32;3733:28;3755:5;3733:28;:::i;:::-;3780:5;3770:15;;;3414:377;;;;;:::o;4004:248::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;-1:-1:-1;;4172:23:21;;;4242:2;4227:18;;;4214:32;;-1:-1:-1;4004:248:21:o;4257:693::-;4368:6;4376;4384;4392;4400;4408;4416;4469:3;4457:9;4448:7;4444:23;4440:33;4437:53;;;4486:1;4483;4476:12;4437:53;4509:29;4528:9;4509:29;:::i;:::-;4499:39;;4557:38;4591:2;4580:9;4576:18;4557:38;:::i;:::-;4547:48;;4642:2;4631:9;4627:18;4614:32;4604:42;;4693:2;4682:9;4678:18;4665:32;4655:42;;4747:3;4736:9;4732:19;4719:33;4792:4;4785:5;4781:16;4774:5;4771:27;4761:55;;4812:1;4809;4802:12;4761:55;4257:693;;;;-1:-1:-1;4257:693:21;;;;4835:5;4887:3;4872:19;;4859:33;;-1:-1:-1;4939:3:21;4924:19;;;4911:33;;4257:693;-1:-1:-1;;4257:693:21:o;4955:260::-;5023:6;5031;5084:2;5072:9;5063:7;5059:23;5055:32;5052:52;;;5100:1;5097;5090:12;5052:52;5123:29;5142:9;5123:29;:::i;:::-;5113:39;;5171:38;5205:2;5194:9;5190:18;5171:38;:::i;5220:380::-;5299:1;5295:12;;;;5342;;;5363:61;;5417:4;5409:6;5405:17;5395:27;;5363:61;5470:2;5462:6;5459:14;5439:18;5436:38;5433:161;;;5516:10;5511:3;5507:20;5504:1;5497:31;5551:4;5548:1;5541:15;5579:4;5576:1;5569:15;5433:161;;5220:380;;;:::o;7393:127::-;7454:10;7449:3;7445:20;7442:1;7435:31;7485:4;7482:1;7475:15;7509:4;7506:1;7499:15;7525:135;7564:3;-1:-1:-1;;7585:17:21;;7582:43;;;7605:18;;:::i;:::-;-1:-1:-1;7652:1:21;7641:13;;7525:135::o;10167:168::-;10207:7;10273:1;10269;10265:6;10261:14;10258:1;10255:21;10250:1;10243:9;10236:17;10232:45;10229:71;;;10280:18;;:::i;:::-;-1:-1:-1;10320:9:21;;10167:168::o;10340:217::-;10380:1;10406;10396:132;;10450:10;10445:3;10441:20;10438:1;10431:31;10485:4;10482:1;10475:15;10513:4;10510:1;10503:15;10396:132;-1:-1:-1;10542:9:21;;10340:217::o;10562:125::-;10602:4;10630:1;10627;10624:8;10621:34;;;10635:18;;:::i;:::-;-1:-1:-1;10672:9:21;;10562:125::o;10692:128::-;10732:3;10763:1;10759:6;10756:1;10753:13;10750:39;;;10769:18;;:::i;:::-;-1:-1:-1;10805:9:21;;10692:128::o;13341:786::-;13752:25;13747:3;13740:38;13722:3;13807:6;13801:13;13823:62;13878:6;13873:2;13868:3;13864:12;13857:4;13849:6;13845:17;13823:62;:::i;:::-;-1:-1:-1;;;13944:2:21;13904:16;;;13936:11;;;13929:40;13994:13;;14016:63;13994:13;14065:2;14057:11;;14050:4;14038:17;;14016:63;:::i;:::-;14099:17;14118:2;14095:26;;13341:786;-1:-1:-1;;;;13341:786:21:o;14940:127::-;15001:10;14996:3;14992:20;14989:1;14982:31;15032:4;15029:1;15022:15;15056:4;15053:1;15046:15;15072:245;15139:6;15192:2;15180:9;15171:7;15167:23;15163:32;15160:52;;;15208:1;15205;15198:12;15160:52;15240:9;15234:16;15259:28;15281:5;15259:28;:::i;15733:127::-;15794:10;15789:3;15785:20;15782:1;15775:31;15825:4;15822:1;15815:15;15849:4;15846:1;15839:15;15865:136;15904:3;15932:5;15922:39;;15941:18;;:::i;:::-;-1:-1:-1;;;15977:18:21;;15865:136::o;16367:127::-;16428:10;16423:3;16419:20;16416:1;16409:31;16459:4;16456:1;16449:15;16483:4;16480:1;16473:15;16906:274;17035:3;17073:6;17067:13;17089:53;17135:6;17130:3;17123:4;17115:6;17111:17;17089:53;:::i;:::-;17158:16;;;;;16906:274;-1:-1:-1;;16906:274:21:o
Swarm Source
ipfs://c34382b9b721300da1f940b79afd6fbf589e54f1d22c69e2ea91437d4edd6b58
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.