ERC-20
Exchange
Overview
Max Total Supply
88,042,027.82000000000021 VELA
Holders
22,131 ( 0.005%)
Market
Price
$0.019 @ 0.000006 ETH (-7.90%)
Onchain Market Cap
$1,671,678.63
Circulating Supply Market Cap
$319,266.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
3.104557440856469688 VELAValue
$0.06 ( ~1.81495210804983E-05 ETH) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
VelaToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2022-12-24 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/math/Math.sol // 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); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @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()); } } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 {} } // File: contracts/VelaToken.sol pragma solidity ^0.8.9; contract VelaToken is ERC20, Pausable, AccessControl { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); uint256 private _maxSupply = 100000000 * 10**decimals(); // 100M tokens is maximum supply constructor() ERC20("VelaToken", "VELA") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); } /** * @dev Returns the maximum amount of tokens that can be minted. */ function maxSupply() public view returns (uint256) { return _maxSupply; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { require(totalSupply() + amount <= _maxSupply, "Cannot mint more tokens, cap exceeded"); _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
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":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620000146200017e60201b60201c565b600a62000022919062000536565b6305f5e10062000033919062000587565b6007553480156200004357600080fd5b506040518060400160405280600981526020017f56656c61546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f56454c41000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c8929190620002ec565b508060049080519060200190620000e1929190620002ec565b5050506000600560006101000a81548160ff021916908315150217905550620001146000801b336200018760201b60201c565b620001467f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200018760201b60201c565b620001787f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200018760201b60201c565b6200064d565b60006012905090565b6200019982826200027960201b60201c565b620002755760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200021a620002e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002fa9062000617565b90600052602060002090601f0160209004810192826200031e57600085556200036a565b82601f106200033957805160ff19168380011785556200036a565b828001600101855582156200036a579182015b82811115620003695782518255916020019190600101906200034c565b5b5090506200037991906200037d565b5090565b5b80821115620003985760008160009055506001016200037e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200042a578086048111156200040257620004016200039c565b5b6001851615620004125780820291505b80810290506200042285620003cb565b9450620003e2565b94509492505050565b60008262000445576001905062000518565b8162000455576000905062000518565b81600181146200046e57600281146200047957620004af565b600191505062000518565b60ff8411156200048e576200048d6200039c565b5b8360020a915084821115620004a857620004a76200039c565b5b5062000518565b5060208310610133831016604e8410600b8410161715620004e95782820a905083811115620004e357620004e26200039c565b5b62000518565b620004f88484846001620003d8565b925090508184048111156200051257620005116200039c565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000543826200051f565b9150620005508362000529565b92506200057f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000433565b905092915050565b600062000594826200051f565b9150620005a1836200051f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005dd57620005dc6200039c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063057607f821691505b60208210811415620006475762000646620005e8565b5b50919050565b61263e806200065d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de578063a457c2d711610097578063d547741f11610071578063d547741f14610462578063d5abeb011461047e578063dd62ed3e1461049c578063e63ab1e9146104cc57610173565b8063a457c2d7146103e4578063a9059cbb14610414578063d53913931461044457610173565b80635c975abb1461032057806370a082311461033e5780638456cb591461036e57806391d148541461037857806395d89b41146103a8578063a217fddf146103c657610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d919061187c565b6104ea565b60405161019f91906118c4565b60405180910390f35b6101b0610564565b6040516101bd9190611978565b60405180910390f35b6101e060048036038101906101db9190611a2e565b6105f6565b6040516101ed91906118c4565b60405180910390f35b6101fe610619565b60405161020b9190611a7d565b60405180910390f35b61022e60048036038101906102299190611a98565b610623565b60405161023b91906118c4565b60405180910390f35b61025e60048036038101906102599190611b21565b610652565b60405161026b9190611b5d565b60405180910390f35b61028e60048036038101906102899190611b78565b610672565b005b610298610693565b6040516102a59190611bd4565b60405180910390f35b6102c860048036038101906102c39190611b78565b61069c565b005b6102e460048036038101906102df9190611a2e565b61071f565b6040516102f191906118c4565b60405180910390f35b610302610756565b005b61031e60048036038101906103199190611a2e565b61078b565b005b61032861081b565b60405161033591906118c4565b60405180910390f35b61035860048036038101906103539190611bef565b610832565b6040516103659190611a7d565b60405180910390f35b61037661087a565b005b610392600480360381019061038d9190611b78565b6108af565b60405161039f91906118c4565b60405180910390f35b6103b061091a565b6040516103bd9190611978565b60405180910390f35b6103ce6109ac565b6040516103db9190611b5d565b60405180910390f35b6103fe60048036038101906103f99190611a2e565b6109b3565b60405161040b91906118c4565b60405180910390f35b61042e60048036038101906104299190611a2e565b610a2a565b60405161043b91906118c4565b60405180910390f35b61044c610a4d565b6040516104599190611b5d565b60405180910390f35b61047c60048036038101906104779190611b78565b610a71565b005b610486610a92565b6040516104939190611a7d565b60405180910390f35b6104b660048036038101906104b19190611c1c565b610a9c565b6040516104c39190611a7d565b60405180910390f35b6104d4610b23565b6040516104e19190611b5d565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055d575061055c82610b47565b5b9050919050565b60606003805461057390611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90611c8b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b600080610601610bb1565b905061060e818585610bb9565b600191505092915050565b6000600254905090565b60008061062e610bb1565b905061063b858285610d84565b610646858585610e10565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61067b82610652565b61068481611088565b61068e838361109c565b505050565b60006012905090565b6106a4610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890611d2f565b60405180910390fd5b61071b828261117d565b5050565b60008061072a610bb1565b905061074b81858561073c8589610a9c565b6107469190611d7e565b610bb9565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61078081611088565b61078861125f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b581611088565b600754826107c1610619565b6107cb9190611d7e565b111561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390611e46565b60405180910390fd5b61081683836112c2565b505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108a481611088565b6108ac611419565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461092990611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461095590611c8b565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b6000801b81565b6000806109be610bb1565b905060006109cc8286610a9c565b905083811015610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890611ed8565b60405180910390fd5b610a1e8286868403610bb9565b60019250505092915050565b600080610a35610bb1565b9050610a42818585610e10565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610a7a82610652565b610a8381611088565b610a8d838361117d565b505050565b6000600754905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090611f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090611ffc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d779190611a7d565b60405180910390a3505050565b6000610d908484610a9c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0a5781811015610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612068565b60405180910390fd5b610e098484848403610bb9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e77906120fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee79061218c565b60405180910390fd5b610efb83838361147c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061221e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106f9190611a7d565b60405180910390a3611082848484611494565b50505050565b61109981611094610bb1565b611499565b50565b6110a682826108af565b6111795760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061111e610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61118782826108af565b1561125b5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611200610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61126761151e565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112ab610bb1565b6040516112b8919061224d565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611329906122b4565b60405180910390fd5b61133e6000838361147c565b80600260008282546113509190611d7e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114019190611a7d565b60405180910390a361141560008383611494565b5050565b611421611567565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611465610bb1565b604051611472919061224d565b60405180910390a1565b611484611567565b61148f8383836115b1565b505050565b505050565b6114a382826108af565b61151a576114b0816115b6565b6114be8360001c60206115e3565b6040516020016114cf9291906123a8565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115119190611978565b60405180910390fd5b5050565b61152661081b565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061242e565b60405180910390fd5b565b61156f61081b565b156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061249a565b60405180910390fd5b565b505050565b60606115dc8273ffffffffffffffffffffffffffffffffffffffff16601460ff166115e3565b9050919050565b6060600060028360026115f691906124ba565b6116009190611d7e565b67ffffffffffffffff81111561161957611618612514565b5b6040519080825280601f01601f19166020018201604052801561164b5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061168357611682612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106116e7576116e6612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261172791906124ba565b6117319190611d7e565b90505b60018111156117d1577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061177357611772612543565b5b1a60f81b82828151811061178a57611789612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806117ca90612572565b9050611734565b5060008414611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906125e8565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61185981611824565b811461186457600080fd5b50565b60008135905061187681611850565b92915050565b6000602082840312156118925761189161181f565b5b60006118a084828501611867565b91505092915050565b60008115159050919050565b6118be816118a9565b82525050565b60006020820190506118d960008301846118b5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119195780820151818401526020810190506118fe565b83811115611928576000848401525b50505050565b6000601f19601f8301169050919050565b600061194a826118df565b61195481856118ea565b93506119648185602086016118fb565b61196d8161192e565b840191505092915050565b60006020820190508181036000830152611992818461193f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119c58261199a565b9050919050565b6119d5816119ba565b81146119e057600080fd5b50565b6000813590506119f2816119cc565b92915050565b6000819050919050565b611a0b816119f8565b8114611a1657600080fd5b50565b600081359050611a2881611a02565b92915050565b60008060408385031215611a4557611a4461181f565b5b6000611a53858286016119e3565b9250506020611a6485828601611a19565b9150509250929050565b611a77816119f8565b82525050565b6000602082019050611a926000830184611a6e565b92915050565b600080600060608486031215611ab157611ab061181f565b5b6000611abf868287016119e3565b9350506020611ad0868287016119e3565b9250506040611ae186828701611a19565b9150509250925092565b6000819050919050565b611afe81611aeb565b8114611b0957600080fd5b50565b600081359050611b1b81611af5565b92915050565b600060208284031215611b3757611b3661181f565b5b6000611b4584828501611b0c565b91505092915050565b611b5781611aeb565b82525050565b6000602082019050611b726000830184611b4e565b92915050565b60008060408385031215611b8f57611b8e61181f565b5b6000611b9d85828601611b0c565b9250506020611bae858286016119e3565b9150509250929050565b600060ff82169050919050565b611bce81611bb8565b82525050565b6000602082019050611be96000830184611bc5565b92915050565b600060208284031215611c0557611c0461181f565b5b6000611c13848285016119e3565b91505092915050565b60008060408385031215611c3357611c3261181f565b5b6000611c41858286016119e3565b9250506020611c52858286016119e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b60208210811415611cb757611cb6611c5c565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611d19602f836118ea565b9150611d2482611cbd565b604082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d89826119f8565b9150611d94836119f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dc957611dc8611d4f565b5b828201905092915050565b7f43616e6e6f74206d696e74206d6f726520746f6b656e732c206361702065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b6000611e306025836118ea565b9150611e3b82611dd4565b604082019050919050565b60006020820190508181036000830152611e5f81611e23565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ec26025836118ea565b9150611ecd82611e66565b604082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f546024836118ea565b9150611f5f82611ef8565b604082019050919050565b60006020820190508181036000830152611f8381611f47565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fe66022836118ea565b9150611ff182611f8a565b604082019050919050565b6000602082019050818103600083015261201581611fd9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612052601d836118ea565b915061205d8261201c565b602082019050919050565b6000602082019050818103600083015261208181612045565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120e46025836118ea565b91506120ef82612088565b604082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121766023836118ea565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122086026836118ea565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b612247816119ba565b82525050565b6000602082019050612262600083018461223e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061229e601f836118ea565b91506122a982612268565b602082019050919050565b600060208201905081810360008301526122cd81612291565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006123156017836122d4565b9150612320826122df565b601782019050919050565b6000612336826118df565b61234081856122d4565b93506123508185602086016118fb565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006123926011836122d4565b915061239d8261235c565b601182019050919050565b60006123b382612308565b91506123bf828561232b565b91506123ca82612385565b91506123d6828461232b565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006124186014836118ea565b9150612423826123e2565b602082019050919050565b600060208201905081810360008301526124478161240b565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124846010836118ea565b915061248f8261244e565b602082019050919050565b600060208201905081810360008301526124b381612477565b9050919050565b60006124c5826119f8565b91506124d0836119f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561250957612508611d4f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061257d826119f8565b9150600082141561259157612590611d4f565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006125d26020836118ea565b91506125dd8261259c565b602082019050919050565b60006020820190508181036000830152612601816125c5565b905091905056fea264697066735822122084c6f4da2d4fe449b50f1086d6f2648ca03135fa6d3281fb27e3a6d481bf262164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de578063a457c2d711610097578063d547741f11610071578063d547741f14610462578063d5abeb011461047e578063dd62ed3e1461049c578063e63ab1e9146104cc57610173565b8063a457c2d7146103e4578063a9059cbb14610414578063d53913931461044457610173565b80635c975abb1461032057806370a082311461033e5780638456cb591461036e57806391d148541461037857806395d89b41146103a8578063a217fddf146103c657610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d919061187c565b6104ea565b60405161019f91906118c4565b60405180910390f35b6101b0610564565b6040516101bd9190611978565b60405180910390f35b6101e060048036038101906101db9190611a2e565b6105f6565b6040516101ed91906118c4565b60405180910390f35b6101fe610619565b60405161020b9190611a7d565b60405180910390f35b61022e60048036038101906102299190611a98565b610623565b60405161023b91906118c4565b60405180910390f35b61025e60048036038101906102599190611b21565b610652565b60405161026b9190611b5d565b60405180910390f35b61028e60048036038101906102899190611b78565b610672565b005b610298610693565b6040516102a59190611bd4565b60405180910390f35b6102c860048036038101906102c39190611b78565b61069c565b005b6102e460048036038101906102df9190611a2e565b61071f565b6040516102f191906118c4565b60405180910390f35b610302610756565b005b61031e60048036038101906103199190611a2e565b61078b565b005b61032861081b565b60405161033591906118c4565b60405180910390f35b61035860048036038101906103539190611bef565b610832565b6040516103659190611a7d565b60405180910390f35b61037661087a565b005b610392600480360381019061038d9190611b78565b6108af565b60405161039f91906118c4565b60405180910390f35b6103b061091a565b6040516103bd9190611978565b60405180910390f35b6103ce6109ac565b6040516103db9190611b5d565b60405180910390f35b6103fe60048036038101906103f99190611a2e565b6109b3565b60405161040b91906118c4565b60405180910390f35b61042e60048036038101906104299190611a2e565b610a2a565b60405161043b91906118c4565b60405180910390f35b61044c610a4d565b6040516104599190611b5d565b60405180910390f35b61047c60048036038101906104779190611b78565b610a71565b005b610486610a92565b6040516104939190611a7d565b60405180910390f35b6104b660048036038101906104b19190611c1c565b610a9c565b6040516104c39190611a7d565b60405180910390f35b6104d4610b23565b6040516104e19190611b5d565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055d575061055c82610b47565b5b9050919050565b60606003805461057390611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90611c8b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b600080610601610bb1565b905061060e818585610bb9565b600191505092915050565b6000600254905090565b60008061062e610bb1565b905061063b858285610d84565b610646858585610e10565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61067b82610652565b61068481611088565b61068e838361109c565b505050565b60006012905090565b6106a4610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890611d2f565b60405180910390fd5b61071b828261117d565b5050565b60008061072a610bb1565b905061074b81858561073c8589610a9c565b6107469190611d7e565b610bb9565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61078081611088565b61078861125f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b581611088565b600754826107c1610619565b6107cb9190611d7e565b111561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390611e46565b60405180910390fd5b61081683836112c2565b505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108a481611088565b6108ac611419565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461092990611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461095590611c8b565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b6000801b81565b6000806109be610bb1565b905060006109cc8286610a9c565b905083811015610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890611ed8565b60405180910390fd5b610a1e8286868403610bb9565b60019250505092915050565b600080610a35610bb1565b9050610a42818585610e10565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610a7a82610652565b610a8381611088565b610a8d838361117d565b505050565b6000600754905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090611f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090611ffc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d779190611a7d565b60405180910390a3505050565b6000610d908484610a9c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0a5781811015610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612068565b60405180910390fd5b610e098484848403610bb9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e77906120fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee79061218c565b60405180910390fd5b610efb83838361147c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061221e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106f9190611a7d565b60405180910390a3611082848484611494565b50505050565b61109981611094610bb1565b611499565b50565b6110a682826108af565b6111795760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061111e610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61118782826108af565b1561125b5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611200610bb1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61126761151e565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112ab610bb1565b6040516112b8919061224d565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611329906122b4565b60405180910390fd5b61133e6000838361147c565b80600260008282546113509190611d7e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114019190611a7d565b60405180910390a361141560008383611494565b5050565b611421611567565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611465610bb1565b604051611472919061224d565b60405180910390a1565b611484611567565b61148f8383836115b1565b505050565b505050565b6114a382826108af565b61151a576114b0816115b6565b6114be8360001c60206115e3565b6040516020016114cf9291906123a8565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115119190611978565b60405180910390fd5b5050565b61152661081b565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061242e565b60405180910390fd5b565b61156f61081b565b156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061249a565b60405180910390fd5b565b505050565b60606115dc8273ffffffffffffffffffffffffffffffffffffffff16601460ff166115e3565b9050919050565b6060600060028360026115f691906124ba565b6116009190611d7e565b67ffffffffffffffff81111561161957611618612514565b5b6040519080825280601f01601f19166020018201604052801561164b5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061168357611682612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106116e7576116e6612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261172791906124ba565b6117319190611d7e565b90505b60018111156117d1577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061177357611772612543565b5b1a60f81b82828151811061178a57611789612543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806117ca90612572565b9050611734565b5060008414611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906125e8565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61185981611824565b811461186457600080fd5b50565b60008135905061187681611850565b92915050565b6000602082840312156118925761189161181f565b5b60006118a084828501611867565b91505092915050565b60008115159050919050565b6118be816118a9565b82525050565b60006020820190506118d960008301846118b5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119195780820151818401526020810190506118fe565b83811115611928576000848401525b50505050565b6000601f19601f8301169050919050565b600061194a826118df565b61195481856118ea565b93506119648185602086016118fb565b61196d8161192e565b840191505092915050565b60006020820190508181036000830152611992818461193f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119c58261199a565b9050919050565b6119d5816119ba565b81146119e057600080fd5b50565b6000813590506119f2816119cc565b92915050565b6000819050919050565b611a0b816119f8565b8114611a1657600080fd5b50565b600081359050611a2881611a02565b92915050565b60008060408385031215611a4557611a4461181f565b5b6000611a53858286016119e3565b9250506020611a6485828601611a19565b9150509250929050565b611a77816119f8565b82525050565b6000602082019050611a926000830184611a6e565b92915050565b600080600060608486031215611ab157611ab061181f565b5b6000611abf868287016119e3565b9350506020611ad0868287016119e3565b9250506040611ae186828701611a19565b9150509250925092565b6000819050919050565b611afe81611aeb565b8114611b0957600080fd5b50565b600081359050611b1b81611af5565b92915050565b600060208284031215611b3757611b3661181f565b5b6000611b4584828501611b0c565b91505092915050565b611b5781611aeb565b82525050565b6000602082019050611b726000830184611b4e565b92915050565b60008060408385031215611b8f57611b8e61181f565b5b6000611b9d85828601611b0c565b9250506020611bae858286016119e3565b9150509250929050565b600060ff82169050919050565b611bce81611bb8565b82525050565b6000602082019050611be96000830184611bc5565b92915050565b600060208284031215611c0557611c0461181f565b5b6000611c13848285016119e3565b91505092915050565b60008060408385031215611c3357611c3261181f565b5b6000611c41858286016119e3565b9250506020611c52858286016119e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b60208210811415611cb757611cb6611c5c565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611d19602f836118ea565b9150611d2482611cbd565b604082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d89826119f8565b9150611d94836119f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dc957611dc8611d4f565b5b828201905092915050565b7f43616e6e6f74206d696e74206d6f726520746f6b656e732c206361702065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b6000611e306025836118ea565b9150611e3b82611dd4565b604082019050919050565b60006020820190508181036000830152611e5f81611e23565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ec26025836118ea565b9150611ecd82611e66565b604082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f546024836118ea565b9150611f5f82611ef8565b604082019050919050565b60006020820190508181036000830152611f8381611f47565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fe66022836118ea565b9150611ff182611f8a565b604082019050919050565b6000602082019050818103600083015261201581611fd9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612052601d836118ea565b915061205d8261201c565b602082019050919050565b6000602082019050818103600083015261208181612045565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120e46025836118ea565b91506120ef82612088565b604082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121766023836118ea565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122086026836118ea565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b612247816119ba565b82525050565b6000602082019050612262600083018461223e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061229e601f836118ea565b91506122a982612268565b602082019050919050565b600060208201905081810360008301526122cd81612291565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006123156017836122d4565b9150612320826122df565b601782019050919050565b6000612336826118df565b61234081856122d4565b93506123508185602086016118fb565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006123926011836122d4565b915061239d8261235c565b601182019050919050565b60006123b382612308565b91506123bf828561232b565b91506123ca82612385565b91506123d6828461232b565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006124186014836118ea565b9150612423826123e2565b602082019050919050565b600060208201905081810360008301526124478161240b565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124846010836118ea565b915061248f8261244e565b602082019050919050565b600060208201905081810360008301526124b381612477565b9050919050565b60006124c5826119f8565b91506124d0836119f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561250957612508611d4f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061257d826119f8565b9150600082141561259157612590611d4f565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006125d26020836118ea565b91506125dd8261259c565b602082019050919050565b60006020820190508181036000830152612601816125c5565b905091905056fea264697066735822122084c6f4da2d4fe449b50f1086d6f2648ca03135fa6d3281fb27e3a6d481bf262164736f6c63430008090033
Deployed Bytecode Sourcemap
48997:1262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37738:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40089:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38858:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40870:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25479:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25920:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38700:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27064:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41574:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49760:77;;;:::i;:::-;;49845:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30998:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39029:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49679:73;;;:::i;:::-;;23952:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37957:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23057:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42315:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39362:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49126:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26360:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49584:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39618:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49057:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:204;23741:4;23780:32;23765:47;;;:11;:47;;;;:87;;;;23816:36;23840:11;23816:23;:36::i;:::-;23765:87;23758:94;;23656:204;;;:::o;37738:100::-;37792:13;37825:5;37818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37738:100;:::o;40089:201::-;40172:4;40189:13;40205:12;:10;:12::i;:::-;40189:28;;40228:32;40237:5;40244:7;40253:6;40228:8;:32::i;:::-;40278:4;40271:11;;;40089:201;;;;:::o;38858:108::-;38919:7;38946:12;;38939:19;;38858:108;:::o;40870:295::-;41001:4;41018:15;41036:12;:10;:12::i;:::-;41018:30;;41059:38;41075:4;41081:7;41090:6;41059:15;:38::i;:::-;41108:27;41118:4;41124:2;41128:6;41108:9;:27::i;:::-;41153:4;41146:11;;;40870:295;;;;;:::o;25479:131::-;25553:7;25580:6;:12;25587:4;25580:12;;;;;;;;;;;:22;;;25573:29;;25479:131;;;:::o;25920:147::-;26003:18;26016:4;26003:12;:18::i;:::-;23548:16;23559:4;23548:10;:16::i;:::-;26034:25:::1;26045:4;26051:7;26034:10;:25::i;:::-;25920:147:::0;;;:::o;38700:93::-;38758:5;38783:2;38776:9;;38700:93;:::o;27064:218::-;27171:12;:10;:12::i;:::-;27160:23;;:7;:23;;;27152:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;27248:26;27260:4;27266:7;27248:11;:26::i;:::-;27064:218;;:::o;41574:238::-;41662:4;41679:13;41695:12;:10;:12::i;:::-;41679:28;;41718:64;41727:5;41734:7;41771:10;41743:25;41753:5;41760:7;41743:9;:25::i;:::-;:38;;;;:::i;:::-;41718:8;:64::i;:::-;41800:4;41793:11;;;41574:238;;;;:::o;49760:77::-;49095:24;23548:16;23559:4;23548:10;:16::i;:::-;49819:10:::1;:8;:10::i;:::-;49760:77:::0;:::o;49845:204::-;49164:24;23548:16;23559:4;23548:10;:16::i;:::-;49961:10:::1;;49951:6;49935:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;49927:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;50024:17;50030:2;50034:6;50024:5;:17::i;:::-;49845:204:::0;;;:::o;30998:86::-;31045:4;31069:7;;;;;;;;;;;31062:14;;30998:86;:::o;39029:127::-;39103:7;39130:9;:18;39140:7;39130:18;;;;;;;;;;;;;;;;39123:25;;39029:127;;;:::o;49679:73::-;49095:24;23548:16;23559:4;23548:10;:16::i;:::-;49736:8:::1;:6;:8::i;:::-;49679:73:::0;:::o;23952:147::-;24038:4;24062:6;:12;24069:4;24062:12;;;;;;;;;;;:20;;:29;24083:7;24062:29;;;;;;;;;;;;;;;;;;;;;;;;;24055:36;;23952:147;;;;:::o;37957:104::-;38013:13;38046:7;38039:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37957:104;:::o;23057:49::-;23102:4;23057:49;;;:::o;42315:436::-;42408:4;42425:13;42441:12;:10;:12::i;:::-;42425:28;;42464:24;42491:25;42501:5;42508:7;42491:9;:25::i;:::-;42464:52;;42555:15;42535:16;:35;;42527:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42648:60;42657:5;42664:7;42692:15;42673:16;:34;42648:8;:60::i;:::-;42739:4;42732:11;;;;42315:436;;;;:::o;39362:193::-;39441:4;39458:13;39474:12;:10;:12::i;:::-;39458:28;;39497;39507:5;39514:2;39518:6;39497:9;:28::i;:::-;39543:4;39536:11;;;39362:193;;;;:::o;49126:62::-;49164:24;49126:62;:::o;26360:149::-;26444:18;26457:4;26444:12;:18::i;:::-;23548:16;23559:4;23548:10;:16::i;:::-;26475:26:::1;26487:4;26493:7;26475:11;:26::i;:::-;26360:149:::0;;;:::o;49584:87::-;49626:7;49653:10;;49646:17;;49584:87;:::o;39618:151::-;39707:7;39734:11;:18;39746:5;39734:18;;;;;;;;;;;;;;;:27;39753:7;39734:27;;;;;;;;;;;;;;;;39727:34;;39618:151;;;;:::o;49057:62::-;49095:24;49057:62;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;20865:98::-;20918:7;20945:10;20938:17;;20865:98;:::o;46342:380::-;46495:1;46478:19;;:5;:19;;;;46470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46576:1;46557:21;;:7;:21;;;;46549:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46660:6;46630:11;:18;46642:5;46630:18;;;;;;;;;;;;;;;:27;46649:7;46630:27;;;;;;;;;;;;;;;:36;;;;46698:7;46682:32;;46691:5;46682:32;;;46707:6;46682:32;;;;;;:::i;:::-;;;;;;;;46342:380;;;:::o;47013:453::-;47148:24;47175:25;47185:5;47192:7;47175:9;:25::i;:::-;47148:52;;47235:17;47215:16;:37;47211:248;;47297:6;47277:16;:26;;47269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47381:51;47390:5;47397:7;47425:6;47406:16;:25;47381:8;:51::i;:::-;47211:248;47137:329;47013:453;;;:::o;43221:840::-;43368:1;43352:18;;:4;:18;;;;43344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43445:1;43431:16;;:2;:16;;;;43423:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43500:38;43521:4;43527:2;43531:6;43500:20;:38::i;:::-;43551:19;43573:9;:15;43583:4;43573:15;;;;;;;;;;;;;;;;43551:37;;43622:6;43607:11;:21;;43599:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43739:6;43725:11;:20;43707:9;:15;43717:4;43707:15;;;;;;;;;;;;;;;:38;;;;43942:6;43925:9;:13;43935:2;43925:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;43992:2;43977:26;;43986:4;43977:26;;;43996:6;43977:26;;;;;;:::i;:::-;;;;;;;;44016:37;44036:4;44042:2;44046:6;44016:19;:37::i;:::-;43333:728;43221:840;;;:::o;24403:105::-;24470:30;24481:4;24487:12;:10;:12::i;:::-;24470:10;:30::i;:::-;24403:105;:::o;28661:238::-;28745:22;28753:4;28759:7;28745;:22::i;:::-;28740:152;;28816:4;28784:6;:12;28791:4;28784:12;;;;;;;;;;;:20;;:29;28805:7;28784:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;28867:12;:10;:12::i;:::-;28840:40;;28858:7;28840:40;;28852:4;28840:40;;;;;;;;;;28740:152;28661:238;;:::o;29079:239::-;29163:22;29171:4;29177:7;29163;:22::i;:::-;29159:152;;;29234:5;29202:6;:12;29209:4;29202:12;;;;;;;;;;;:20;;:29;29223:7;29202:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29286:12;:10;:12::i;:::-;29259:40;;29277:7;29259:40;;29271:4;29259:40;;;;;;;;;;29159:152;29079:239;;:::o;31853:120::-;30862:16;:14;:16::i;:::-;31922:5:::1;31912:7;;:15;;;;;;;;;;;;;;;;;;31943:22;31952:12;:10;:12::i;:::-;31943:22;;;;;;:::i;:::-;;;;;;;;31853:120::o:0;44348:548::-;44451:1;44432:21;;:7;:21;;;;44424:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44502:49;44531:1;44535:7;44544:6;44502:20;:49::i;:::-;44580:6;44564:12;;:22;;;;;;;:::i;:::-;;;;;;;;44757:6;44735:9;:18;44745:7;44735:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;44811:7;44790:37;;44807:1;44790:37;;;44820:6;44790:37;;;;;;:::i;:::-;;;;;;;;44840:48;44868:1;44872:7;44881:6;44840:19;:48::i;:::-;44348:548;;:::o;31594:118::-;30603:19;:17;:19::i;:::-;31664:4:::1;31654:7;;:14;;;;;;;;;;;;;;;;;;31684:20;31691:12;:10;:12::i;:::-;31684:20;;;;;;:::i;:::-;;;;;;;;31594:118::o:0;50057:199::-;30603:19;:17;:19::i;:::-;50204:44:::1;50231:4;50237:2;50241:6;50204:26;:44::i;:::-;50057:199:::0;;;:::o;48795:124::-;;;;:::o;24798:492::-;24887:22;24895:4;24901:7;24887;:22::i;:::-;24882:401;;25075:28;25095:7;25075:19;:28::i;:::-;25176:38;25204:4;25196:13;;25211:2;25176:19;:38::i;:::-;24980:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24926:345;;;;;;;;;;;:::i;:::-;;;;;;;;24882:401;24798:492;;:::o;31342:108::-;31409:8;:6;:8::i;:::-;31401:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;31342:108::o;31157:::-;31228:8;:6;:8::i;:::-;31227:9;31219:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;31157:108::o;48066:125::-;;;;:::o;16987:151::-;17045:13;17078:52;17106:4;17090:22;;15142:2;17078:52;;:11;:52::i;:::-;17071:59;;16987:151;;;:::o;16383:447::-;16458:13;16484:19;16529:1;16520:6;16516:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16506:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16484:47;;16542:15;:6;16549:1;16542:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16568;:6;16575:1;16568:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16599:9;16624:1;16615:6;16611:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16599:26;;16594:131;16631:1;16627;:5;16594:131;;;16666:8;16683:3;16675:5;:11;16666:21;;;;;;;:::i;:::-;;;;;16654:6;16661:1;16654:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;16712:1;16702:11;;;;;16634:3;;;;:::i;:::-;;;16594:131;;;;16752:1;16743:5;:10;16735:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16815:6;16801:21;;;16383:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:474::-;7584:6;7592;7641:2;7629:9;7620:7;7616:23;7612:32;7609:119;;;7647:79;;:::i;:::-;7609:119;7767:1;7792:53;7837:7;7828:6;7817:9;7813:22;7792:53;:::i;:::-;7782:63;;7738:117;7894:2;7920:53;7965:7;7956:6;7945:9;7941:22;7920:53;:::i;:::-;7910:63;;7865:118;7516:474;;;;;:::o;7996:180::-;8044:77;8041:1;8034:88;8141:4;8138:1;8131:15;8165:4;8162:1;8155:15;8182:320;8226:6;8263:1;8257:4;8253:12;8243:22;;8310:1;8304:4;8300:12;8331:18;8321:81;;8387:4;8379:6;8375:17;8365:27;;8321:81;8449:2;8441:6;8438:14;8418:18;8415:38;8412:84;;;8468:18;;:::i;:::-;8412:84;8233:269;8182:320;;;:::o;8508:234::-;8648:34;8644:1;8636:6;8632:14;8625:58;8717:17;8712:2;8704:6;8700:15;8693:42;8508:234;:::o;8748:366::-;8890:3;8911:67;8975:2;8970:3;8911:67;:::i;:::-;8904:74;;8987:93;9076:3;8987:93;:::i;:::-;9105:2;9100:3;9096:12;9089:19;;8748:366;;;:::o;9120:419::-;9286:4;9324:2;9313:9;9309:18;9301:26;;9373:9;9367:4;9363:20;9359:1;9348:9;9344:17;9337:47;9401:131;9527:4;9401:131;:::i;:::-;9393:139;;9120:419;;;:::o;9545:180::-;9593:77;9590:1;9583:88;9690:4;9687:1;9680:15;9714:4;9711:1;9704:15;9731:305;9771:3;9790:20;9808:1;9790:20;:::i;:::-;9785:25;;9824:20;9842:1;9824:20;:::i;:::-;9819:25;;9978:1;9910:66;9906:74;9903:1;9900:81;9897:107;;;9984:18;;:::i;:::-;9897:107;10028:1;10025;10021:9;10014:16;;9731:305;;;;:::o;10042:224::-;10182:34;10178:1;10170:6;10166:14;10159:58;10251:7;10246:2;10238:6;10234:15;10227:32;10042:224;:::o;10272:366::-;10414:3;10435:67;10499:2;10494:3;10435:67;:::i;:::-;10428:74;;10511:93;10600:3;10511:93;:::i;:::-;10629:2;10624:3;10620:12;10613:19;;10272:366;;;:::o;10644:419::-;10810:4;10848:2;10837:9;10833:18;10825:26;;10897:9;10891:4;10887:20;10883:1;10872:9;10868:17;10861:47;10925:131;11051:4;10925:131;:::i;:::-;10917:139;;10644:419;;;:::o;11069:224::-;11209:34;11205:1;11197:6;11193:14;11186:58;11278:7;11273:2;11265:6;11261:15;11254:32;11069:224;:::o;11299:366::-;11441:3;11462:67;11526:2;11521:3;11462:67;:::i;:::-;11455:74;;11538:93;11627:3;11538:93;:::i;:::-;11656:2;11651:3;11647:12;11640:19;;11299:366;;;:::o;11671:419::-;11837:4;11875:2;11864:9;11860:18;11852:26;;11924:9;11918:4;11914:20;11910:1;11899:9;11895:17;11888:47;11952:131;12078:4;11952:131;:::i;:::-;11944:139;;11671:419;;;:::o;12096:223::-;12236:34;12232:1;12224:6;12220:14;12213:58;12305:6;12300:2;12292:6;12288:15;12281:31;12096:223;:::o;12325:366::-;12467:3;12488:67;12552:2;12547:3;12488:67;:::i;:::-;12481:74;;12564:93;12653:3;12564:93;:::i;:::-;12682:2;12677:3;12673:12;12666:19;;12325:366;;;:::o;12697:419::-;12863:4;12901:2;12890:9;12886:18;12878:26;;12950:9;12944:4;12940:20;12936:1;12925:9;12921:17;12914:47;12978:131;13104:4;12978:131;:::i;:::-;12970:139;;12697:419;;;:::o;13122:221::-;13262:34;13258:1;13250:6;13246:14;13239:58;13331:4;13326:2;13318:6;13314:15;13307:29;13122:221;:::o;13349:366::-;13491:3;13512:67;13576:2;13571:3;13512:67;:::i;:::-;13505:74;;13588:93;13677:3;13588:93;:::i;:::-;13706:2;13701:3;13697:12;13690:19;;13349:366;;;:::o;13721:419::-;13887:4;13925:2;13914:9;13910:18;13902:26;;13974:9;13968:4;13964:20;13960:1;13949:9;13945:17;13938:47;14002:131;14128:4;14002:131;:::i;:::-;13994:139;;13721:419;;;:::o;14146:179::-;14286:31;14282:1;14274:6;14270:14;14263:55;14146:179;:::o;14331:366::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:419::-;14869:4;14907:2;14896:9;14892:18;14884:26;;14956:9;14950:4;14946:20;14942:1;14931:9;14927:17;14920:47;14984:131;15110:4;14984:131;:::i;:::-;14976:139;;14703:419;;;:::o;15128:224::-;15268:34;15264:1;15256:6;15252:14;15245:58;15337:7;15332:2;15324:6;15320:15;15313:32;15128:224;:::o;15358:366::-;15500:3;15521:67;15585:2;15580:3;15521:67;:::i;:::-;15514:74;;15597:93;15686:3;15597:93;:::i;:::-;15715:2;15710:3;15706:12;15699:19;;15358:366;;;:::o;15730:419::-;15896:4;15934:2;15923:9;15919:18;15911:26;;15983:9;15977:4;15973:20;15969:1;15958:9;15954:17;15947:47;16011:131;16137:4;16011:131;:::i;:::-;16003:139;;15730:419;;;:::o;16155:222::-;16295:34;16291:1;16283:6;16279:14;16272:58;16364:5;16359:2;16351:6;16347:15;16340:30;16155:222;:::o;16383:366::-;16525:3;16546:67;16610:2;16605:3;16546:67;:::i;:::-;16539:74;;16622:93;16711:3;16622:93;:::i;:::-;16740:2;16735:3;16731:12;16724:19;;16383:366;;;:::o;16755:419::-;16921:4;16959:2;16948:9;16944:18;16936:26;;17008:9;17002:4;16998:20;16994:1;16983:9;16979:17;16972:47;17036:131;17162:4;17036:131;:::i;:::-;17028:139;;16755:419;;;:::o;17180:225::-;17320:34;17316:1;17308:6;17304:14;17297:58;17389:8;17384:2;17376:6;17372:15;17365:33;17180:225;:::o;17411:366::-;17553:3;17574:67;17638:2;17633:3;17574:67;:::i;:::-;17567:74;;17650:93;17739:3;17650:93;:::i;:::-;17768:2;17763:3;17759:12;17752:19;;17411:366;;;:::o;17783:419::-;17949:4;17987:2;17976:9;17972:18;17964:26;;18036:9;18030:4;18026:20;18022:1;18011:9;18007:17;18000:47;18064:131;18190:4;18064:131;:::i;:::-;18056:139;;17783:419;;;:::o;18208:118::-;18295:24;18313:5;18295:24;:::i;:::-;18290:3;18283:37;18208:118;;:::o;18332:222::-;18425:4;18463:2;18452:9;18448:18;18440:26;;18476:71;18544:1;18533:9;18529:17;18520:6;18476:71;:::i;:::-;18332:222;;;;:::o;18560:181::-;18700:33;18696:1;18688:6;18684:14;18677:57;18560:181;:::o;18747:366::-;18889:3;18910:67;18974:2;18969:3;18910:67;:::i;:::-;18903:74;;18986:93;19075:3;18986:93;:::i;:::-;19104:2;19099:3;19095:12;19088:19;;18747:366;;;:::o;19119:419::-;19285:4;19323:2;19312:9;19308:18;19300:26;;19372:9;19366:4;19362:20;19358:1;19347:9;19343:17;19336:47;19400:131;19526:4;19400:131;:::i;:::-;19392:139;;19119:419;;;:::o;19544:148::-;19646:11;19683:3;19668:18;;19544:148;;;;:::o;19698:173::-;19838:25;19834:1;19826:6;19822:14;19815:49;19698:173;:::o;19877:402::-;20037:3;20058:85;20140:2;20135:3;20058:85;:::i;:::-;20051:92;;20152:93;20241:3;20152:93;:::i;:::-;20270:2;20265:3;20261:12;20254:19;;19877:402;;;:::o;20285:377::-;20391:3;20419:39;20452:5;20419:39;:::i;:::-;20474:89;20556:6;20551:3;20474:89;:::i;:::-;20467:96;;20572:52;20617:6;20612:3;20605:4;20598:5;20594:16;20572:52;:::i;:::-;20649:6;20644:3;20640:16;20633:23;;20395:267;20285:377;;;;:::o;20668:167::-;20808:19;20804:1;20796:6;20792:14;20785:43;20668:167;:::o;20841:402::-;21001:3;21022:85;21104:2;21099:3;21022:85;:::i;:::-;21015:92;;21116:93;21205:3;21116:93;:::i;:::-;21234:2;21229:3;21225:12;21218:19;;20841:402;;;:::o;21249:967::-;21631:3;21653:148;21797:3;21653:148;:::i;:::-;21646:155;;21818:95;21909:3;21900:6;21818:95;:::i;:::-;21811:102;;21930:148;22074:3;21930:148;:::i;:::-;21923:155;;22095:95;22186:3;22177:6;22095:95;:::i;:::-;22088:102;;22207:3;22200:10;;21249:967;;;;;:::o;22222:170::-;22362:22;22358:1;22350:6;22346:14;22339:46;22222:170;:::o;22398:366::-;22540:3;22561:67;22625:2;22620:3;22561:67;:::i;:::-;22554:74;;22637:93;22726:3;22637:93;:::i;:::-;22755:2;22750:3;22746:12;22739:19;;22398:366;;;:::o;22770:419::-;22936:4;22974:2;22963:9;22959:18;22951:26;;23023:9;23017:4;23013:20;23009:1;22998:9;22994:17;22987:47;23051:131;23177:4;23051:131;:::i;:::-;23043:139;;22770:419;;;:::o;23195:166::-;23335:18;23331:1;23323:6;23319:14;23312:42;23195:166;:::o;23367:366::-;23509:3;23530:67;23594:2;23589:3;23530:67;:::i;:::-;23523:74;;23606:93;23695:3;23606:93;:::i;:::-;23724:2;23719:3;23715:12;23708:19;;23367:366;;;:::o;23739:419::-;23905:4;23943:2;23932:9;23928:18;23920:26;;23992:9;23986:4;23982:20;23978:1;23967:9;23963:17;23956:47;24020:131;24146:4;24020:131;:::i;:::-;24012:139;;23739:419;;;:::o;24164:348::-;24204:7;24227:20;24245:1;24227:20;:::i;:::-;24222:25;;24261:20;24279:1;24261:20;:::i;:::-;24256:25;;24449:1;24381:66;24377:74;24374:1;24371:81;24366:1;24359:9;24352:17;24348:105;24345:131;;;24456:18;;:::i;:::-;24345:131;24504:1;24501;24497:9;24486:20;;24164:348;;;;:::o;24518:180::-;24566:77;24563:1;24556:88;24663:4;24660:1;24653:15;24687:4;24684:1;24677:15;24704:180;24752:77;24749:1;24742:88;24849:4;24846:1;24839:15;24873:4;24870:1;24863:15;24890:171;24929:3;24952:24;24970:5;24952:24;:::i;:::-;24943:33;;24998:4;24991:5;24988:15;24985:41;;;25006:18;;:::i;:::-;24985:41;25053:1;25046:5;25042:13;25035:20;;24890:171;;;:::o;25067:182::-;25207:34;25203:1;25195:6;25191:14;25184:58;25067:182;:::o;25255:366::-;25397:3;25418:67;25482:2;25477:3;25418:67;:::i;:::-;25411:74;;25494:93;25583:3;25494:93;:::i;:::-;25612:2;25607:3;25603:12;25596:19;;25255:366;;;:::o;25627:419::-;25793:4;25831:2;25820:9;25816:18;25808:26;;25880:9;25874:4;25870:20;25866:1;25855:9;25851:17;25844:47;25908:131;26034:4;25908:131;:::i;:::-;25900:139;;25627:419;;;:::o
Swarm Source
ipfs://84c6f4da2d4fe449b50f1086d6f2648ca03135fa6d3281fb27e3a6d481bf2621
[ 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.