CRC-1155
Overview
Max Total Supply
0 MTA
Holders
236
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MagicTrickAccessories
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-08-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @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; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } 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); } /** * @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; } } /** * @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; } /** * @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(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } } contract Oracle { address admin; uint public rand; constructor(uint _rand) { admin = msg.sender; rand = _rand; } function createrandomness(uint _rand) external { require(msg.sender == admin); rand = _rand; } } contract MagicTrickAccessories is ERC1155, AccessControl, ERC1155Burnable, ReentrancyGuard { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); using SafeMath for uint256; using SafeERC20 for IERC20; Oracle private oracle; string public name = "MagicTrickAccessories"; string public symbol = "MTA"; address payable private Wallet_Burn = payable(0x000000000000000000000000000000000000dEaD); uint public CombineshardsMultiplier = 50; uint256 public PoolFee = 50; uint256 public totalnfts = 50; uint256 public totaltomint = 3000; uint256[] public minted = [0, 0, 0, 0, 0]; uint256 public MINT_PRICE = 1000000*1e18; IERC20 public Cropperfield; uint256 nonce; constructor(address CROpperfield, address oracleaddress) ERC1155("https://gateway.pinata.cloud/ipfs/QmYmBh6t3Sxx4ksSeNTekocYzccKVgr1Dd6mq84DMzprGy/{id}.json") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); Cropperfield = IERC20(CROpperfield); oracle = Oracle(oracleaddress); _mint(msg.sender, 2, 25, ""); _mint(msg.sender, 3, 15, ""); _mint(msg.sender, 4, 10, ""); } function supportsInterface(bytes4 interfaceId) public view override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } event _Combineresult ( address indexed reciever, uint256 indexed tokenId ); struct Staker { uint256 initialtimestamp; uint256 timesincelastupdate; uint256 points; uint256 staked; uint256 timeoflastMSmint; uint256 dailyamountofMSminted; } mapping (address => Staker) public Stakers; function setURI(string memory newuri) public onlyRole(DEFAULT_ADMIN_ROLE) { _setURI(newuri); } function set_Minter_Role(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { _grantRole(MINTER_ROLE, account); } function mintMagicTrickAccessory(address account, uint256 id, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(account, id, amount, ""); minted[id] = minted[id] + amount; } function mintMagicShards(address account, uint256 amount, bytes memory data) public onlyRole(MINTER_ROLE) { require(amount <= 200, "Daily Limit Exceeded"); Staker storage staker = Stakers[account]; uint256 timesincelastMSmint = block.timestamp.sub(staker.timeoflastMSmint); if (timesincelastMSmint> 1 days){ staker.dailyamountofMSminted = 0; } require(staker.dailyamountofMSminted.add(amount) <= 200, "Daily Limit Exceeded"); staker.dailyamountofMSminted = staker.dailyamountofMSminted.add(amount); staker.timeoflastMSmint = block.timestamp; _mint(account, 5, amount, data); } function OpenMagicBox() public { require(Cropperfield.allowance(msg.sender, address(this)) >= MINT_PRICE, "Not enough CROpperfield tokens"); require(totalnfts < totaltomint, "All Minted"); uint256 Poolamount = MINT_PRICE.mul(PoolFee).div(100); uint256 Burnamount = MINT_PRICE - Poolamount; Cropperfield.safeTransferFrom(msg.sender,Wallet_Burn, Burnamount); Cropperfield.safeTransferFrom(msg.sender,address(Cropperfield), Poolamount); uint256 index = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(), block.timestamp, block.difficulty, msg.sender)))%100; nonce ++; totalnfts ++; if (index >=0 && index <=53) { _mint(msg.sender, 0, 1, ""); minted[0] ++; } if (index >=54 && index <=79) { _mint(msg.sender, 1, 1, ""); minted[1] ++; } if (index >=80 && index <=93) { _mint(msg.sender, 2, 1, ""); minted[2] ++; } if (index >=94 && index <=98) { _mint(msg.sender, 3, 1, ""); minted[3] ++; } if (index == 99) { _mint(msg.sender, 4, 1, ""); minted[4] ++; } } function changeavailableNFTs(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { totaltomint = amount; } function setMintPrice(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { MINT_PRICE = amount; } function setCombineshardsMultiplier(uint amount) public onlyRole(DEFAULT_ADMIN_ROLE) { CombineshardsMultiplier = amount; } function changeMintToken(address newtoken) public onlyRole(DEFAULT_ADMIN_ROLE) { Cropperfield = IERC20(newtoken); } function changePoolFee(uint256 newPoolFee) public onlyRole(DEFAULT_ADMIN_ROLE) { PoolFee = newPoolFee; } function combine(uint256 id,uint packOfMagicShards) public { require (packOfMagicShards < 5); require (id<4, "Can't use Spheres"); require (balanceOf(msg.sender,id) >= 5, "not enough NFTs"); uint256 rand = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(), block.timestamp, block.difficulty, msg.sender)))%100; uint amountOfMagicShards = packOfMagicShards.mul(CombineshardsMultiplier); uint boost = (packOfMagicShards.mul(20)).add(20); uint chanceOf2tiersup = boost; if (id<3){ if (rand >= chanceOf2tiersup) { _burn(msg.sender,id,5); _burn(msg.sender,5,amountOfMagicShards); _mint(msg.sender,id+1,1,""); emit _Combineresult( msg.sender, id+1 ); } if (rand < chanceOf2tiersup) { _burn(msg.sender,id,5); _burn(msg.sender,5,amountOfMagicShards); _mint(msg.sender,id+2,1,""); emit _Combineresult( msg.sender, id+2 ); } } if (id==3) { _burn(msg.sender,id,5); _mint(msg.sender,id+1,1,""); emit _Combineresult( msg.sender, id+1 ); } } uint256 PointsPerMagicShard = 1500000000; function Change_PointsPerMagicShard (uint256 new_PointsPerMagicShard) external onlyRole(DEFAULT_ADMIN_ROLE) { PointsPerMagicShard = new_PointsPerMagicShard; } function deposit (uint256 amount) public nonReentrant{ require(Cropperfield.balanceOf(msg.sender)>=amount); claim_magicshards(); Staker storage staker = Stakers[msg.sender]; staker.initialtimestamp = block.timestamp; staker.staked = staker.staked.add(amount); Cropperfield.safeTransferFrom(msg.sender,address(this),amount); } function withdraw (uint256 amount) public nonReentrant{ Staker storage staker = Stakers[msg.sender]; require (staker.staked>=amount); claim_magicshards(); uint256 stakedtime = block.timestamp - staker.initialtimestamp; uint256 penalty = 0; if (stakedtime < 7 days) { penalty = amount.mul(5).div(100); } uint256 amounttowithdraw = amount.sub(penalty); staker.staked = staker.staked - amount; Cropperfield.safeTransfer(msg.sender, amounttowithdraw); Cropperfield.safeTransfer(address(Cropperfield), penalty); } function claim_magicshards() public { updatebalance(); Staker storage staker = Stakers[msg.sender]; if (staker.points < PointsPerMagicShard){ return; } uint magicshards = staker.points.div(PointsPerMagicShard); staker.points = staker.points.mod(PointsPerMagicShard); _mint(msg.sender,5,magicshards,""); } function updatebalance () private { Staker storage staker = Stakers[msg.sender]; uint256 pointsPerSec = staker.staked.div(1e18).div(1000); uint256 reward = (block.timestamp.sub(staker.timesincelastupdate)).mul(pointsPerSec); staker.points = staker.points + reward; staker.timesincelastupdate = block.timestamp; } function checkpendingpoints () public view returns(uint256) { Staker storage staker = Stakers[msg.sender]; uint256 pointsPerSec = staker.staked.div(1e18).div(1000); uint256 pending_reward = staker.points + (block.timestamp.sub(staker.timesincelastupdate)).mul(pointsPerSec); return pending_reward; } function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4) { return bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"CROpperfield","type":"address"},{"internalType":"address","name":"oracleaddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_Combineresult","type":"event"},{"inputs":[{"internalType":"uint256","name":"new_PointsPerMagicShard","type":"uint256"}],"name":"Change_PointsPerMagicShard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CombineshardsMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cropperfield","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OpenMagicBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Stakers","outputs":[{"internalType":"uint256","name":"initialtimestamp","type":"uint256"},{"internalType":"uint256","name":"timesincelastupdate","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"staked","type":"uint256"},{"internalType":"uint256","name":"timeoflastMSmint","type":"uint256"},{"internalType":"uint256","name":"dailyamountofMSminted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtoken","type":"address"}],"name":"changeMintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPoolFee","type":"uint256"}],"name":"changePoolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeavailableNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkpendingpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim_magicshards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"packOfMagicShards","type":"uint256"}],"name":"combine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"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":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintMagicShards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMagicTrickAccessory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setCombineshardsMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"set_Minter_Role","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":"totalnfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totaltomint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601560808190527f4d61676963547269636b4163636573736f72696573000000000000000000000060a090815262000040916006919062000642565b50604080518082019091526003808252624d544160e81b60209092019182526200006d9160079162000642565b50600880546001600160a01b03191661dead17905560326009819055600a819055600b55610bb8600c556040805160a081018252600080825260208201819052918101829052606081018290526080810191909152620000d290600d906005620006d1565b5069d3c21bcecceda1000000600e556359682f00601255348015620000f657600080fd5b506040516200413c3803806200413c833981016040819052620001199162000748565b6040518060800160405280605a8152602001620040e2605a91396200013e8162000221565b506001600455620001516000336200023a565b6200017d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200023a565b600f80546001600160a01b038085166001600160a01b0319928316179092556005805492841692909116919091179055604080516020810190915260008152620001cf903390600290601990620002de565b620001f4336003600f60405180602001604052806000815250620002de60201b60201c565b62000219336004600a60405180602001604052806000815250620002de60201b60201c565b5050620009c0565b80516200023690600290602084019062000642565b5050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16620002365760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200029a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b038416620003445760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b336000620003528562000400565b90506000620003618562000400565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290620003959084906200085f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620003f78360008989898962000456565b50505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200043d576200043d620008fe565b602090810291909101015292915050565b505050505050565b62000475846001600160a01b03166200063360201b620018c41760201c565b156200044e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620004b1908990899088908890889060040162000803565b602060405180830381600087803b158015620004cc57600080fd5b505af1925050508015620004ff575060408051601f3d908101601f19168201909252620004fc9181019062000780565b60015b620005c0576200050e62000914565b806308c379a014156200054f57506200052662000931565b8062000533575062000551565b8060405162461bcd60e51b81526004016200033b91906200084a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016200033b565b6001600160e01b0319811663f23a6e6160e01b14620003f75760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016200033b565b6001600160a01b03163b151590565b828054620006509062000886565b90600052602060002090601f016020900481019282620006745760008555620006bf565b82601f106200068f57805160ff1916838001178555620006bf565b82800160010185558215620006bf579182015b82811115620006bf578251825591602001919060010190620006a2565b50620006cd92915062000714565b5090565b828054828255906000526020600020908101928215620006bf579160200282015b82811115620006bf578251829060ff16905591602001919060010190620006f2565b5b80821115620006cd576000815560010162000715565b80516001600160a01b03811681146200074357600080fd5b919050565b600080604083850312156200075c57600080fd5b62000767836200072b565b915062000777602084016200072b565b90509250929050565b6000602082840312156200079357600080fd5b81516001600160e01b031981168114620007ac57600080fd5b9392505050565b6000815180845260005b81811015620007db57602081850181015186830182015201620007bd565b81811115620007ee576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906200083f90830184620007b3565b979650505050505050565b602081526000620007ac6020830184620007b3565b600082198211156200088157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200089b57607f821691505b60208210811415620008bd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715620008f757634e487b7160e01b600052604160045260246000fd5b6040525050565b634e487b7160e01b600052603260045260246000fd5b600060033d11156200092e5760046000803e5060005160e01c5b90565b600060443d1015620009405790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200097057505050505090565b8285019150815181811115620009895750505050505090565b843d8701016020828501011115620009a45750505050505090565b620009b560208286010187620008c3565b509095945050505050565b61371280620009d06000396000f3fe608060405234801561001057600080fd5b50600436106102735760003560e01c80638a50fecb11610151578063d5391393116100c3578063f23a6e6111610087578063f23a6e61146105ad578063f242432a146105ff578063f4a0a52814610612578063f5298aca14610625578063f75bbeec14610638578063ffc3fddd1461066357600080fd5b8063d5391393146104d0578063d547741f146104e5578063e1c5af5b146104f8578063e985e9c514610501578063ede85eb71461053d57600080fd5b8063a899406711610115578063a89940671461047c578063b6b55f251461048f578063b7dd214f146104a2578063bcfedd70146104ab578063c002d23d146104b4578063ccf0b4a6146104bd57600080fd5b80638a50fecb1461043357806391d148541461044657806395d89b4114610459578063a217fddf14610461578063a22cb4651461046957600080fd5b806334450615116101ea578063646745b0116101ae578063646745b0146103cc5780636b20c454146103d4578063784bdab4146103e75780637dc0bf3f146103fa5780638206dede1461040d5780638a17f47e1461042057600080fd5b8063344506151461038057806336568abe1461038857806346e8bbe51461039b5780634e1273f4146103a45780635a1c3cbe146103c457600080fd5b8063158b48221161023c578063158b4822146102fe578063248a9ca3146103115780632e1a7d4d146103345780632eb2c2d6146103475780632f2ff15d1461035a57806331091ba31461036d57600080fd5b8062fdd58e1461027857806301ffc9a71461029e57806302fe5305146102c157806306fdde03146102d65780630e89341c146102eb575b600080fd5b61028b610286366004612da4565b610676565b6040519081526020015b60405180910390f35b6102b16102ac366004612f76565b61070c565b6040519015158152602001610295565b6102d46102cf366004612fb0565b61071d565b005b6102de610735565b604051610295919061323b565b6102de6102f9366004612f3a565b6107c3565b6102d461030c366004612e1a565b610857565b61028b61031f366004612f3a565b60009081526003602052604090206001015490565b6102d4610342366004612f3a565b6108d8565b6102d4610355366004612b48565b6109ec565b6102d4610368366004612f53565b610a83565b6102d461037b366004612dce565b610aad565b6102d4610bd7565b6102d4610396366004612f53565b610c59565b61028b60095481565b6103b76103b2366004612e4d565b610cd3565b60405161029591906131fa565b6102d4610dfc565b61028b611245565b6102d46103e2366004612cfa565b6112b1565b6102d46103f5366004612afa565b6112f4565b61028b610408366004612f3a565b611322565b6102d461041b366004612f3a565b611343565b6102d461042e366004612afa565b611354565b6102d4610441366004613011565b611377565b6102b1610454366004612f53565b61165d565b6102de611688565b61028b600081565b6102d4610477366004612d6d565b611695565b6102d461048a366004612f3a565b6116a0565b6102d461049d366004612f3a565b6116b1565b61028b600c5481565b61028b600b5481565b61028b600e5481565b6102d46104cb366004612f3a565b6117e4565b61028b6000805160206136bd83398151915281565b6102d46104f3366004612f53565b6117f5565b61028b600a5481565b6102b161050f366004612b15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61058061054b366004612afa565b601160205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610295565b6105e66105bb366004612bf1565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b03199091168152602001610295565b6102d461060d366004612c96565b61181a565b6102d4610620366004612f3a565b61185f565b6102d4610633366004612e1a565b611870565b600f5461064b906001600160a01b031681565b6040516001600160a01b039091168152602001610295565b6102d4610671366004612f3a565b6118b3565b60006001600160a01b0383166106e65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6000610717826118d3565b92915050565b6000610728816118f8565b61073182611905565b5050565b6006805461074290613505565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613505565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b505050505081565b6060600280546107d290613505565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe90613505565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b50505050509050919050565b6000805160206136bd83398151915261086f816118f8565b61088a84848460405180602001604052806000815250611918565b81600d848154811061089e5761089e6135c7565b90600052602060002001546108b39190613460565b600d84815481106108c6576108c66135c7565b60009182526020909120015550505050565b6002600454141561092b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106dd565b6002600455336000908152601160205260409020600381015482111561095057600080fd5b610958610bd7565b805460009061096790426134ab565b9050600062093a8082101561098f5761098c6064610986866005611a2c565b90611a3f565b90505b600061099b8583611a4b565b90508484600301546109ad91906134ab565b6003850155600f546109c9906001600160a01b03163383611a57565b600f546109e0906001600160a01b03168084611a57565b50506001600455505050565b6001600160a01b038516331480610a085750610a08853361050f565b610a6f5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dd565b610a7c8585858585611aba565b5050505050565b600082815260036020526040902060010154610a9e816118f8565b610aa88383611c4e565b505050565b6000805160206136bd833981519152610ac5816118f8565b60c8831115610b0d5760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106dd565b6001600160a01b03841660009081526011602052604081206004810154909190610b38904290611a4b565b905062015180811115610b4d57600060058301555b600582015460c890610b5f9087611cd4565b1115610ba45760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106dd565b6005820154610bb39086611cd4565b600580840191909155426004840155610bcf9087908787611918565b505050505050565b610bdf611ce0565b33600090815260116020526040902060125460028201541015610bff5750565b6000610c1a6012548360020154611a3f90919063ffffffff16565b9050610c356012548360020154611d5290919063ffffffff16565b82600201819055506107313360058360405180602001604052806000815250611918565b6001600160a01b0381163314610cc95760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106dd565b6107318282611d5e565b60608151835114610d385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106dd565b600083516001600160401b03811115610d5357610d536135dd565b604051908082528060200260200182016040528015610d7c578160200160208202803683370190505b50905060005b8451811015610df457610dc7858281518110610da057610da06135c7565b6020026020010151858381518110610dba57610dba6135c7565b6020026020010151610676565b828281518110610dd957610dd96135c7565b6020908102919091010152610ded8161356c565b9050610d82565b509392505050565b600e54600f54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e9060440160206040518083038186803b158015610e4857600080fd5b505afa158015610e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e809190612ff8565b1015610ece5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682043524f707065726669656c6420746f6b656e73000060448201526064016106dd565b600c54600b5410610f0e5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106dd565b6000610f2c6064610986600a54600e54611a2c90919063ffffffff16565b9050600081600e54610f3e91906134ab565b600854600f54919250610f60916001600160a01b039081169133911684611dc5565b600f54610f78906001600160a01b0316338185611dc5565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b158015610fcd57600080fd5b505afa158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110059190612ff8565b42443360405160200161101c95949392919061312b565b6040516020818303038152906040528051906020012060001c61103f9190613587565b6010805491925060006110518361356c565b9091555050600b80549060006110668361356c565b9091555050603581116110c057611090336000600160405180602001604052806000815250611918565b600d6000815481106110a4576110a46135c7565b600091825260208220018054916110ba8361356c565b91905055505b603681101580156110d25750604f8111155b15611123576110f33360018060405180602001604052806000815250611918565b600d600181548110611107576111076135c7565b6000918252602082200180549161111d8361356c565b91905055505b605081101580156111355750605d8111155b1561118757611157336002600160405180602001604052806000815250611918565b600d60028154811061116b5761116b6135c7565b600091825260208220018054916111818361356c565b91905055505b605e8110158015611199575060628111155b156111eb576111bb336003600160405180602001604052806000815250611918565b600d6003815481106111cf576111cf6135c7565b600091825260208220018054916111e58361356c565b91905055505b8060631415610aa857611211336004600160405180602001604052806000815250611918565b600d600481548110611225576112256135c7565b6000918252602082200180549161123b8361356c565b9190505550505050565b33600090815260116020526040812060038101548290611275906103e89061098690670de0b6b3a7640000611a3f565b9050600061129a82611294856001015442611a4b90919063ffffffff16565b90611a2c565b83600201546112a99190613460565b949350505050565b6001600160a01b0383163314806112cd57506112cd833361050f565b6112e95760405162461bcd60e51b81526004016106dd906132da565b610aa8838383611e03565b60006112ff816118f8565b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600d818154811061133257600080fd5b600091825260209091200154905081565b600061134e816118f8565b50600c55565b600061135f816118f8565b6107316000805160206136bd83398151915283611c4e565b6005811061138457600080fd5b600482106113c85760405162461bcd60e51b815260206004820152601160248201527043616e277420757365205370686572657360781b60448201526064016106dd565b60056113d43384610676565b10156114145760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016106dd565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b15801561146957600080fd5b505afa15801561147d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a19190612ff8565b4244336040516020016114b895949392919061312b565b6040516020818303038152906040528051906020012060001c6114db9190613587565b905060006114f460095484611a2c90919063ffffffff16565b9050600061150d60146115078682611a2c565b90611cd4565b90508060038610156115fb578084106115955761152c33876005611f8d565b61153833600585611f8d565b61155e33611547886001613460565b600160405180602001604052806000815250611918565b611569866001613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b808410156115fb576115a933876005611f8d565b6115b533600585611f8d565b6115c433611547886002613460565b6115cf866002613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b8560031415610bcf5761161033876005611f8d565b61161f33611547886001613460565b61162a866001613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a3505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6007805461074290613505565b610731338383612091565b60006116ab816118f8565b50600955565b600260045414156117045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106dd565b60026004908155600f546040516370a0823160e01b8152339281019290925282916001600160a01b03909116906370a082319060240160206040518083038186803b15801561175257600080fd5b505afa158015611766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178a9190612ff8565b101561179557600080fd5b61179d610bd7565b33600090815260116020526040902042815560038101546117be9083611cd4565b6003820155600f546117db906001600160a01b0316333085611dc5565b50506001600455565b60006117ef816118f8565b50601255565b600082815260036020526040902060010154611810816118f8565b610aa88383611d5e565b6001600160a01b0385163314806118365750611836853361050f565b6118525760405162461bcd60e51b81526004016106dd906132da565b610a7c8585858585612172565b600061186a816118f8565b50600e55565b6001600160a01b03831633148061188c575061188c833361050f565b6118a85760405162461bcd60e51b81526004016106dd906132da565b610aa8838383611f8d565b60006118be816118f8565b50600a55565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061071757506107178261229c565b61190281336122ec565b50565b8051610731906002906020840190612951565b6001600160a01b0384166119785760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dd565b33600061198485612350565b9050600061199185612350565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906119c3908490613460565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a238360008989898961239b565b50505050505050565b6000611a38828461348c565b9392505050565b6000611a388284613478565b6000611a3882846134ab565b6040516001600160a01b038316602482015260448101829052610aa890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612506565b8151835114611adb5760405162461bcd60e51b81526004016106dd906133f5565b6001600160a01b038416611b015760405162461bcd60e51b81526004016106dd90613323565b3360005b8451811015611be8576000858281518110611b2257611b226135c7565b602002602001015190506000858381518110611b4057611b406135c7565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611b905760405162461bcd60e51b81526004016106dd906133ab565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611bcd908490613460565b9250508190555050505080611be19061356c565b9050611b05565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c3892919061320d565b60405180910390a4610bcf8187878787876125d8565b611c58828261165d565b6107315760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611c903390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611a388284613460565b3360009081526011602052604081206003810154909190611d11906103e89061098690670de0b6b3a7640000611a3f565b90506000611d3082611294856001015442611a4b90919063ffffffff16565b9050808360020154611d429190613460565b6002840155505042600190910155565b6000611a388284613587565b611d68828261165d565b156107315760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b0380851660248301528316604482015260648101829052611dfd9085906323b872dd60e01b90608401611a83565b50505050565b6001600160a01b038316611e295760405162461bcd60e51b81526004016106dd90613368565b8051825114611e4a5760405162461bcd60e51b81526004016106dd906133f5565b604080516020810190915260009081905233905b8351811015611f20576000848281518110611e7b57611e7b6135c7565b602002602001015190506000848381518110611e9957611e996135c7565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611ee95760405162461bcd60e51b81526004016106dd90613296565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611f188161356c565b915050611e5e565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611f7192919061320d565b60405180910390a4604080516020810190915260009052611dfd565b6001600160a01b038316611fb35760405162461bcd60e51b81526004016106dd90613368565b336000611fbf84612350565b90506000611fcc84612350565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156120195760405162461bcd60e51b81526004016106dd90613296565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611a23565b816001600160a01b0316836001600160a01b031614156121055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106dd565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121985760405162461bcd60e51b81526004016106dd90613323565b3360006121a485612350565b905060006121b185612350565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156121f45760405162461bcd60e51b81526004016106dd906133ab565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612231908490613460565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612291848a8a8a8a8a61239b565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806122cd57506001600160e01b031982166303a24d0760e21b145b8061071757506301ffc9a760e01b6001600160e01b0319831614610717565b6122f6828261165d565b6107315761230e816001600160a01b031660146126a2565b6123198360206126a2565b60405160200161232a9291906130b6565b60408051601f198184030181529082905262461bcd60e51b82526106dd9160040161323b565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061238a5761238a6135c7565b602090810291909101015292915050565b6001600160a01b0384163b15610bcf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123df90899089908890889088906004016131c0565b602060405180830381600087803b1580156123f957600080fd5b505af1925050508015612429575060408051601f3d908101601f1916820190925261242691810190612f93565b60015b6124d6576124356135f3565b806308c379a0141561246f575061244a61360f565b806124555750612471565b8060405162461bcd60e51b81526004016106dd919061323b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106dd565b6001600160e01b0319811663f23a6e6160e01b14611a235760405162461bcd60e51b81526004016106dd9061324e565b600061255b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661283d9092919063ffffffff16565b805190915015610aa857808060200190518101906125799190612f1d565b610aa85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106dd565b6001600160a01b0384163b15610bcf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061261c9089908990889088908890600401613162565b602060405180830381600087803b15801561263657600080fd5b505af1925050508015612666575060408051601f3d908101601f1916820190925261266391810190612f93565b60015b612672576124356135f3565b6001600160e01b0319811663bc197c8160e01b14611a235760405162461bcd60e51b81526004016106dd9061324e565b606060006126b183600261348c565b6126bc906002613460565b6001600160401b038111156126d3576126d36135dd565b6040519080825280601f01601f1916602001820160405280156126fd576020820181803683370190505b509050600360fc1b81600081518110612718576127186135c7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612747576127476135c7565b60200101906001600160f81b031916908160001a905350600061276b84600261348c565b612776906001613460565b90505b60018111156127ee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106127aa576127aa6135c7565b1a60f81b8282815181106127c0576127c06135c7565b60200101906001600160f81b031916908160001a90535060049490941c936127e7816134ee565b9050612779565b508315611a385760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106dd565b60606112a98484600085856001600160a01b0385163b61289f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106dd565b600080866001600160a01b031685876040516128bb919061309a565b60006040518083038185875af1925050503d80600081146128f8576040519150601f19603f3d011682016040523d82523d6000602084013e6128fd565b606091505b509150915061290d828286612918565b979650505050505050565b60608315612927575081611a38565b8251156129375782518084602001fd5b8160405162461bcd60e51b81526004016106dd919061323b565b82805461295d90613505565b90600052602060002090601f01602090048101928261297f57600085556129c5565b82601f1061299857805160ff19168380011785556129c5565b828001600101855582156129c5579182015b828111156129c55782518255916020019190600101906129aa565b506129d19291506129d5565b5090565b5b808211156129d157600081556001016129d6565b60006001600160401b03831115612a0357612a036135dd565b604051612a1a601f8501601f191660200182613540565b809150838152848484011115612a2f57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114612a5e57600080fd5b919050565b600082601f830112612a7457600080fd5b81356020612a818261343d565b604051612a8e8282613540565b8381528281019150858301600585901b87018401881015612aae57600080fd5b60005b85811015612acd57813584529284019290840190600101612ab1565b5090979650505050505050565b600082601f830112612aeb57600080fd5b611a38838335602085016129ea565b600060208284031215612b0c57600080fd5b611a3882612a47565b60008060408385031215612b2857600080fd5b612b3183612a47565b9150612b3f60208401612a47565b90509250929050565b600080600080600060a08688031215612b6057600080fd5b612b6986612a47565b9450612b7760208701612a47565b935060408601356001600160401b0380821115612b9357600080fd5b612b9f89838a01612a63565b94506060880135915080821115612bb557600080fd5b612bc189838a01612a63565b93506080880135915080821115612bd757600080fd5b50612be488828901612ada565b9150509295509295909350565b60008060008060008060a08789031215612c0a57600080fd5b612c1387612a47565b9550612c2160208801612a47565b9450604087013593506060870135925060808701356001600160401b0380821115612c4b57600080fd5b818901915089601f830112612c5f57600080fd5b813581811115612c6e57600080fd5b8a6020828501011115612c8057600080fd5b6020830194508093505050509295509295509295565b600080600080600060a08688031215612cae57600080fd5b612cb786612a47565b9450612cc560208701612a47565b9350604086013592506060860135915060808601356001600160401b03811115612cee57600080fd5b612be488828901612ada565b600080600060608486031215612d0f57600080fd5b612d1884612a47565b925060208401356001600160401b0380821115612d3457600080fd5b612d4087838801612a63565b93506040860135915080821115612d5657600080fd5b50612d6386828701612a63565b9150509250925092565b60008060408385031215612d8057600080fd5b612d8983612a47565b91506020830135612d9981613698565b809150509250929050565b60008060408385031215612db757600080fd5b612dc083612a47565b946020939093013593505050565b600080600060608486031215612de357600080fd5b612dec84612a47565b92506020840135915060408401356001600160401b03811115612e0e57600080fd5b612d6386828701612ada565b600080600060608486031215612e2f57600080fd5b612e3884612a47565b95602085013595506040909401359392505050565b60008060408385031215612e6057600080fd5b82356001600160401b0380821115612e7757600080fd5b818501915085601f830112612e8b57600080fd5b81356020612e988261343d565b604051612ea58282613540565b8381528281019150858301600585901b870184018b1015612ec557600080fd5b600096505b84871015612eef57612edb81612a47565b835260019690960195918301918301612eca565b5096505086013592505080821115612f0657600080fd5b50612f1385828601612a63565b9150509250929050565b600060208284031215612f2f57600080fd5b8151611a3881613698565b600060208284031215612f4c57600080fd5b5035919050565b60008060408385031215612f6657600080fd5b82359150612b3f60208401612a47565b600060208284031215612f8857600080fd5b8135611a38816136a6565b600060208284031215612fa557600080fd5b8151611a38816136a6565b600060208284031215612fc257600080fd5b81356001600160401b03811115612fd857600080fd5b8201601f81018413612fe957600080fd5b6112a9848235602084016129ea565b60006020828403121561300a57600080fd5b5051919050565b6000806040838503121561302457600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561306357815187529582019590820190600101613047565b509495945050505050565b600081518084526130868160208601602086016134c2565b601f01601f19169290920160200192915050565b600082516130ac8184602087016134c2565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516130ee8160178501602088016134c2565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161311f8160288401602088016134c2565b01602801949350505050565b948552602085019390935260408401919091526060808401919091521b6bffffffffffffffffffffffff1916608082015260940190565b6001600160a01b0386811682528516602082015260a06040820181905260009061318e90830186613033565b82810360608401526131a08186613033565b905082810360808401526131b4818561306e565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061290d9083018461306e565b602081526000611a386020830184613033565b6040815260006132206040830185613033565b82810360208401526132328185613033565b95945050505050565b602081526000611a38602083018461306e565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b03821115613456576134566135dd565b5060051b60200190565b600082198211156134735761347361359b565b500190565b600082613487576134876135b1565b500490565b60008160001904831182151516156134a6576134a661359b565b500290565b6000828210156134bd576134bd61359b565b500390565b60005b838110156134dd5781810151838201526020016134c5565b83811115611dfd5750506000910152565b6000816134fd576134fd61359b565b506000190190565b600181811c9082168061351957607f821691505b6020821081141561353a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715613565576135656135dd565b6040525050565b60006000198214156135805761358061359b565b5060010190565b600082613596576135966135b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561360c5760046000803e5060005160e01c5b90565b600060443d101561361d5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561364c57505050505090565b82850191508151818111156136645750505050505090565b843d870101602082850101111561367e5750505050505090565b61368d60208286010187613540565b509095945050505050565b801515811461190257600080fd5b6001600160e01b03198116811461190257600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220f19211e57cc674fb98339c20bfc65c1919fbdbf3aa8eca4cfb45dd3c0feea4c764736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d596d4268367433537878346b7353654e54656b6f63597a63634b566772314464366d713834444d7a707247792f7b69647d2e6a736f6e000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b000000000000000000000000558e66da9ff77955d12b9d1ce7aff6f696341602
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102735760003560e01c80638a50fecb11610151578063d5391393116100c3578063f23a6e6111610087578063f23a6e61146105ad578063f242432a146105ff578063f4a0a52814610612578063f5298aca14610625578063f75bbeec14610638578063ffc3fddd1461066357600080fd5b8063d5391393146104d0578063d547741f146104e5578063e1c5af5b146104f8578063e985e9c514610501578063ede85eb71461053d57600080fd5b8063a899406711610115578063a89940671461047c578063b6b55f251461048f578063b7dd214f146104a2578063bcfedd70146104ab578063c002d23d146104b4578063ccf0b4a6146104bd57600080fd5b80638a50fecb1461043357806391d148541461044657806395d89b4114610459578063a217fddf14610461578063a22cb4651461046957600080fd5b806334450615116101ea578063646745b0116101ae578063646745b0146103cc5780636b20c454146103d4578063784bdab4146103e75780637dc0bf3f146103fa5780638206dede1461040d5780638a17f47e1461042057600080fd5b8063344506151461038057806336568abe1461038857806346e8bbe51461039b5780634e1273f4146103a45780635a1c3cbe146103c457600080fd5b8063158b48221161023c578063158b4822146102fe578063248a9ca3146103115780632e1a7d4d146103345780632eb2c2d6146103475780632f2ff15d1461035a57806331091ba31461036d57600080fd5b8062fdd58e1461027857806301ffc9a71461029e57806302fe5305146102c157806306fdde03146102d65780630e89341c146102eb575b600080fd5b61028b610286366004612da4565b610676565b6040519081526020015b60405180910390f35b6102b16102ac366004612f76565b61070c565b6040519015158152602001610295565b6102d46102cf366004612fb0565b61071d565b005b6102de610735565b604051610295919061323b565b6102de6102f9366004612f3a565b6107c3565b6102d461030c366004612e1a565b610857565b61028b61031f366004612f3a565b60009081526003602052604090206001015490565b6102d4610342366004612f3a565b6108d8565b6102d4610355366004612b48565b6109ec565b6102d4610368366004612f53565b610a83565b6102d461037b366004612dce565b610aad565b6102d4610bd7565b6102d4610396366004612f53565b610c59565b61028b60095481565b6103b76103b2366004612e4d565b610cd3565b60405161029591906131fa565b6102d4610dfc565b61028b611245565b6102d46103e2366004612cfa565b6112b1565b6102d46103f5366004612afa565b6112f4565b61028b610408366004612f3a565b611322565b6102d461041b366004612f3a565b611343565b6102d461042e366004612afa565b611354565b6102d4610441366004613011565b611377565b6102b1610454366004612f53565b61165d565b6102de611688565b61028b600081565b6102d4610477366004612d6d565b611695565b6102d461048a366004612f3a565b6116a0565b6102d461049d366004612f3a565b6116b1565b61028b600c5481565b61028b600b5481565b61028b600e5481565b6102d46104cb366004612f3a565b6117e4565b61028b6000805160206136bd83398151915281565b6102d46104f3366004612f53565b6117f5565b61028b600a5481565b6102b161050f366004612b15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61058061054b366004612afa565b601160205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610295565b6105e66105bb366004612bf1565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b03199091168152602001610295565b6102d461060d366004612c96565b61181a565b6102d4610620366004612f3a565b61185f565b6102d4610633366004612e1a565b611870565b600f5461064b906001600160a01b031681565b6040516001600160a01b039091168152602001610295565b6102d4610671366004612f3a565b6118b3565b60006001600160a01b0383166106e65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6000610717826118d3565b92915050565b6000610728816118f8565b61073182611905565b5050565b6006805461074290613505565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613505565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b505050505081565b6060600280546107d290613505565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe90613505565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b50505050509050919050565b6000805160206136bd83398151915261086f816118f8565b61088a84848460405180602001604052806000815250611918565b81600d848154811061089e5761089e6135c7565b90600052602060002001546108b39190613460565b600d84815481106108c6576108c66135c7565b60009182526020909120015550505050565b6002600454141561092b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106dd565b6002600455336000908152601160205260409020600381015482111561095057600080fd5b610958610bd7565b805460009061096790426134ab565b9050600062093a8082101561098f5761098c6064610986866005611a2c565b90611a3f565b90505b600061099b8583611a4b565b90508484600301546109ad91906134ab565b6003850155600f546109c9906001600160a01b03163383611a57565b600f546109e0906001600160a01b03168084611a57565b50506001600455505050565b6001600160a01b038516331480610a085750610a08853361050f565b610a6f5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dd565b610a7c8585858585611aba565b5050505050565b600082815260036020526040902060010154610a9e816118f8565b610aa88383611c4e565b505050565b6000805160206136bd833981519152610ac5816118f8565b60c8831115610b0d5760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106dd565b6001600160a01b03841660009081526011602052604081206004810154909190610b38904290611a4b565b905062015180811115610b4d57600060058301555b600582015460c890610b5f9087611cd4565b1115610ba45760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106dd565b6005820154610bb39086611cd4565b600580840191909155426004840155610bcf9087908787611918565b505050505050565b610bdf611ce0565b33600090815260116020526040902060125460028201541015610bff5750565b6000610c1a6012548360020154611a3f90919063ffffffff16565b9050610c356012548360020154611d5290919063ffffffff16565b82600201819055506107313360058360405180602001604052806000815250611918565b6001600160a01b0381163314610cc95760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106dd565b6107318282611d5e565b60608151835114610d385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106dd565b600083516001600160401b03811115610d5357610d536135dd565b604051908082528060200260200182016040528015610d7c578160200160208202803683370190505b50905060005b8451811015610df457610dc7858281518110610da057610da06135c7565b6020026020010151858381518110610dba57610dba6135c7565b6020026020010151610676565b828281518110610dd957610dd96135c7565b6020908102919091010152610ded8161356c565b9050610d82565b509392505050565b600e54600f54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e9060440160206040518083038186803b158015610e4857600080fd5b505afa158015610e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e809190612ff8565b1015610ece5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682043524f707065726669656c6420746f6b656e73000060448201526064016106dd565b600c54600b5410610f0e5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106dd565b6000610f2c6064610986600a54600e54611a2c90919063ffffffff16565b9050600081600e54610f3e91906134ab565b600854600f54919250610f60916001600160a01b039081169133911684611dc5565b600f54610f78906001600160a01b0316338185611dc5565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b158015610fcd57600080fd5b505afa158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110059190612ff8565b42443360405160200161101c95949392919061312b565b6040516020818303038152906040528051906020012060001c61103f9190613587565b6010805491925060006110518361356c565b9091555050600b80549060006110668361356c565b9091555050603581116110c057611090336000600160405180602001604052806000815250611918565b600d6000815481106110a4576110a46135c7565b600091825260208220018054916110ba8361356c565b91905055505b603681101580156110d25750604f8111155b15611123576110f33360018060405180602001604052806000815250611918565b600d600181548110611107576111076135c7565b6000918252602082200180549161111d8361356c565b91905055505b605081101580156111355750605d8111155b1561118757611157336002600160405180602001604052806000815250611918565b600d60028154811061116b5761116b6135c7565b600091825260208220018054916111818361356c565b91905055505b605e8110158015611199575060628111155b156111eb576111bb336003600160405180602001604052806000815250611918565b600d6003815481106111cf576111cf6135c7565b600091825260208220018054916111e58361356c565b91905055505b8060631415610aa857611211336004600160405180602001604052806000815250611918565b600d600481548110611225576112256135c7565b6000918252602082200180549161123b8361356c565b9190505550505050565b33600090815260116020526040812060038101548290611275906103e89061098690670de0b6b3a7640000611a3f565b9050600061129a82611294856001015442611a4b90919063ffffffff16565b90611a2c565b83600201546112a99190613460565b949350505050565b6001600160a01b0383163314806112cd57506112cd833361050f565b6112e95760405162461bcd60e51b81526004016106dd906132da565b610aa8838383611e03565b60006112ff816118f8565b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600d818154811061133257600080fd5b600091825260209091200154905081565b600061134e816118f8565b50600c55565b600061135f816118f8565b6107316000805160206136bd83398151915283611c4e565b6005811061138457600080fd5b600482106113c85760405162461bcd60e51b815260206004820152601160248201527043616e277420757365205370686572657360781b60448201526064016106dd565b60056113d43384610676565b10156114145760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016106dd565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b15801561146957600080fd5b505afa15801561147d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a19190612ff8565b4244336040516020016114b895949392919061312b565b6040516020818303038152906040528051906020012060001c6114db9190613587565b905060006114f460095484611a2c90919063ffffffff16565b9050600061150d60146115078682611a2c565b90611cd4565b90508060038610156115fb578084106115955761152c33876005611f8d565b61153833600585611f8d565b61155e33611547886001613460565b600160405180602001604052806000815250611918565b611569866001613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b808410156115fb576115a933876005611f8d565b6115b533600585611f8d565b6115c433611547886002613460565b6115cf866002613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b8560031415610bcf5761161033876005611f8d565b61161f33611547886001613460565b61162a866001613460565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a3505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6007805461074290613505565b610731338383612091565b60006116ab816118f8565b50600955565b600260045414156117045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106dd565b60026004908155600f546040516370a0823160e01b8152339281019290925282916001600160a01b03909116906370a082319060240160206040518083038186803b15801561175257600080fd5b505afa158015611766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178a9190612ff8565b101561179557600080fd5b61179d610bd7565b33600090815260116020526040902042815560038101546117be9083611cd4565b6003820155600f546117db906001600160a01b0316333085611dc5565b50506001600455565b60006117ef816118f8565b50601255565b600082815260036020526040902060010154611810816118f8565b610aa88383611d5e565b6001600160a01b0385163314806118365750611836853361050f565b6118525760405162461bcd60e51b81526004016106dd906132da565b610a7c8585858585612172565b600061186a816118f8565b50600e55565b6001600160a01b03831633148061188c575061188c833361050f565b6118a85760405162461bcd60e51b81526004016106dd906132da565b610aa8838383611f8d565b60006118be816118f8565b50600a55565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061071757506107178261229c565b61190281336122ec565b50565b8051610731906002906020840190612951565b6001600160a01b0384166119785760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dd565b33600061198485612350565b9050600061199185612350565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906119c3908490613460565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a238360008989898961239b565b50505050505050565b6000611a38828461348c565b9392505050565b6000611a388284613478565b6000611a3882846134ab565b6040516001600160a01b038316602482015260448101829052610aa890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612506565b8151835114611adb5760405162461bcd60e51b81526004016106dd906133f5565b6001600160a01b038416611b015760405162461bcd60e51b81526004016106dd90613323565b3360005b8451811015611be8576000858281518110611b2257611b226135c7565b602002602001015190506000858381518110611b4057611b406135c7565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611b905760405162461bcd60e51b81526004016106dd906133ab565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611bcd908490613460565b9250508190555050505080611be19061356c565b9050611b05565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c3892919061320d565b60405180910390a4610bcf8187878787876125d8565b611c58828261165d565b6107315760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611c903390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611a388284613460565b3360009081526011602052604081206003810154909190611d11906103e89061098690670de0b6b3a7640000611a3f565b90506000611d3082611294856001015442611a4b90919063ffffffff16565b9050808360020154611d429190613460565b6002840155505042600190910155565b6000611a388284613587565b611d68828261165d565b156107315760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b0380851660248301528316604482015260648101829052611dfd9085906323b872dd60e01b90608401611a83565b50505050565b6001600160a01b038316611e295760405162461bcd60e51b81526004016106dd90613368565b8051825114611e4a5760405162461bcd60e51b81526004016106dd906133f5565b604080516020810190915260009081905233905b8351811015611f20576000848281518110611e7b57611e7b6135c7565b602002602001015190506000848381518110611e9957611e996135c7565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611ee95760405162461bcd60e51b81526004016106dd90613296565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611f188161356c565b915050611e5e565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611f7192919061320d565b60405180910390a4604080516020810190915260009052611dfd565b6001600160a01b038316611fb35760405162461bcd60e51b81526004016106dd90613368565b336000611fbf84612350565b90506000611fcc84612350565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156120195760405162461bcd60e51b81526004016106dd90613296565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611a23565b816001600160a01b0316836001600160a01b031614156121055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106dd565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121985760405162461bcd60e51b81526004016106dd90613323565b3360006121a485612350565b905060006121b185612350565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156121f45760405162461bcd60e51b81526004016106dd906133ab565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612231908490613460565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612291848a8a8a8a8a61239b565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806122cd57506001600160e01b031982166303a24d0760e21b145b8061071757506301ffc9a760e01b6001600160e01b0319831614610717565b6122f6828261165d565b6107315761230e816001600160a01b031660146126a2565b6123198360206126a2565b60405160200161232a9291906130b6565b60408051601f198184030181529082905262461bcd60e51b82526106dd9160040161323b565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061238a5761238a6135c7565b602090810291909101015292915050565b6001600160a01b0384163b15610bcf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123df90899089908890889088906004016131c0565b602060405180830381600087803b1580156123f957600080fd5b505af1925050508015612429575060408051601f3d908101601f1916820190925261242691810190612f93565b60015b6124d6576124356135f3565b806308c379a0141561246f575061244a61360f565b806124555750612471565b8060405162461bcd60e51b81526004016106dd919061323b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106dd565b6001600160e01b0319811663f23a6e6160e01b14611a235760405162461bcd60e51b81526004016106dd9061324e565b600061255b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661283d9092919063ffffffff16565b805190915015610aa857808060200190518101906125799190612f1d565b610aa85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106dd565b6001600160a01b0384163b15610bcf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061261c9089908990889088908890600401613162565b602060405180830381600087803b15801561263657600080fd5b505af1925050508015612666575060408051601f3d908101601f1916820190925261266391810190612f93565b60015b612672576124356135f3565b6001600160e01b0319811663bc197c8160e01b14611a235760405162461bcd60e51b81526004016106dd9061324e565b606060006126b183600261348c565b6126bc906002613460565b6001600160401b038111156126d3576126d36135dd565b6040519080825280601f01601f1916602001820160405280156126fd576020820181803683370190505b509050600360fc1b81600081518110612718576127186135c7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612747576127476135c7565b60200101906001600160f81b031916908160001a905350600061276b84600261348c565b612776906001613460565b90505b60018111156127ee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106127aa576127aa6135c7565b1a60f81b8282815181106127c0576127c06135c7565b60200101906001600160f81b031916908160001a90535060049490941c936127e7816134ee565b9050612779565b508315611a385760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106dd565b60606112a98484600085856001600160a01b0385163b61289f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106dd565b600080866001600160a01b031685876040516128bb919061309a565b60006040518083038185875af1925050503d80600081146128f8576040519150601f19603f3d011682016040523d82523d6000602084013e6128fd565b606091505b509150915061290d828286612918565b979650505050505050565b60608315612927575081611a38565b8251156129375782518084602001fd5b8160405162461bcd60e51b81526004016106dd919061323b565b82805461295d90613505565b90600052602060002090601f01602090048101928261297f57600085556129c5565b82601f1061299857805160ff19168380011785556129c5565b828001600101855582156129c5579182015b828111156129c55782518255916020019190600101906129aa565b506129d19291506129d5565b5090565b5b808211156129d157600081556001016129d6565b60006001600160401b03831115612a0357612a036135dd565b604051612a1a601f8501601f191660200182613540565b809150838152848484011115612a2f57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114612a5e57600080fd5b919050565b600082601f830112612a7457600080fd5b81356020612a818261343d565b604051612a8e8282613540565b8381528281019150858301600585901b87018401881015612aae57600080fd5b60005b85811015612acd57813584529284019290840190600101612ab1565b5090979650505050505050565b600082601f830112612aeb57600080fd5b611a38838335602085016129ea565b600060208284031215612b0c57600080fd5b611a3882612a47565b60008060408385031215612b2857600080fd5b612b3183612a47565b9150612b3f60208401612a47565b90509250929050565b600080600080600060a08688031215612b6057600080fd5b612b6986612a47565b9450612b7760208701612a47565b935060408601356001600160401b0380821115612b9357600080fd5b612b9f89838a01612a63565b94506060880135915080821115612bb557600080fd5b612bc189838a01612a63565b93506080880135915080821115612bd757600080fd5b50612be488828901612ada565b9150509295509295909350565b60008060008060008060a08789031215612c0a57600080fd5b612c1387612a47565b9550612c2160208801612a47565b9450604087013593506060870135925060808701356001600160401b0380821115612c4b57600080fd5b818901915089601f830112612c5f57600080fd5b813581811115612c6e57600080fd5b8a6020828501011115612c8057600080fd5b6020830194508093505050509295509295509295565b600080600080600060a08688031215612cae57600080fd5b612cb786612a47565b9450612cc560208701612a47565b9350604086013592506060860135915060808601356001600160401b03811115612cee57600080fd5b612be488828901612ada565b600080600060608486031215612d0f57600080fd5b612d1884612a47565b925060208401356001600160401b0380821115612d3457600080fd5b612d4087838801612a63565b93506040860135915080821115612d5657600080fd5b50612d6386828701612a63565b9150509250925092565b60008060408385031215612d8057600080fd5b612d8983612a47565b91506020830135612d9981613698565b809150509250929050565b60008060408385031215612db757600080fd5b612dc083612a47565b946020939093013593505050565b600080600060608486031215612de357600080fd5b612dec84612a47565b92506020840135915060408401356001600160401b03811115612e0e57600080fd5b612d6386828701612ada565b600080600060608486031215612e2f57600080fd5b612e3884612a47565b95602085013595506040909401359392505050565b60008060408385031215612e6057600080fd5b82356001600160401b0380821115612e7757600080fd5b818501915085601f830112612e8b57600080fd5b81356020612e988261343d565b604051612ea58282613540565b8381528281019150858301600585901b870184018b1015612ec557600080fd5b600096505b84871015612eef57612edb81612a47565b835260019690960195918301918301612eca565b5096505086013592505080821115612f0657600080fd5b50612f1385828601612a63565b9150509250929050565b600060208284031215612f2f57600080fd5b8151611a3881613698565b600060208284031215612f4c57600080fd5b5035919050565b60008060408385031215612f6657600080fd5b82359150612b3f60208401612a47565b600060208284031215612f8857600080fd5b8135611a38816136a6565b600060208284031215612fa557600080fd5b8151611a38816136a6565b600060208284031215612fc257600080fd5b81356001600160401b03811115612fd857600080fd5b8201601f81018413612fe957600080fd5b6112a9848235602084016129ea565b60006020828403121561300a57600080fd5b5051919050565b6000806040838503121561302457600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561306357815187529582019590820190600101613047565b509495945050505050565b600081518084526130868160208601602086016134c2565b601f01601f19169290920160200192915050565b600082516130ac8184602087016134c2565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516130ee8160178501602088016134c2565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161311f8160288401602088016134c2565b01602801949350505050565b948552602085019390935260408401919091526060808401919091521b6bffffffffffffffffffffffff1916608082015260940190565b6001600160a01b0386811682528516602082015260a06040820181905260009061318e90830186613033565b82810360608401526131a08186613033565b905082810360808401526131b4818561306e565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061290d9083018461306e565b602081526000611a386020830184613033565b6040815260006132206040830185613033565b82810360208401526132328185613033565b95945050505050565b602081526000611a38602083018461306e565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b03821115613456576134566135dd565b5060051b60200190565b600082198211156134735761347361359b565b500190565b600082613487576134876135b1565b500490565b60008160001904831182151516156134a6576134a661359b565b500290565b6000828210156134bd576134bd61359b565b500390565b60005b838110156134dd5781810151838201526020016134c5565b83811115611dfd5750506000910152565b6000816134fd576134fd61359b565b506000190190565b600181811c9082168061351957607f821691505b6020821081141561353a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715613565576135656135dd565b6040525050565b60006000198214156135805761358061359b565b5060010190565b600082613596576135966135b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561360c5760046000803e5060005160e01c5b90565b600060443d101561361d5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561364c57505050505090565b82850191508151818111156136645750505050505090565b843d870101602082850101111561367e5750505050505090565b61368d60208286010187613540565b509095945050505050565b801515811461190257600080fd5b6001600160e01b03198116811461190257600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220f19211e57cc674fb98339c20bfc65c1919fbdbf3aa8eca4cfb45dd3c0feea4c764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b000000000000000000000000558e66da9ff77955d12b9d1ce7aff6f696341602
-----Decoded View---------------
Arg [0] : CROpperfield (address): 0xc40469cCcb76e080d26B84f460753Bc0cf57f90b
Arg [1] : oracleaddress (address): 0x558E66Da9Ff77955d12b9D1CE7AFF6F696341602
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b
Arg [1] : 000000000000000000000000558e66da9ff77955d12b9d1ce7aff6f696341602
Deployed Bytecode Sourcemap
63294:9055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46558:230;;;;;;:::i;:::-;;:::i;:::-;;;15992:25:1;;;15980:2;15965:18;46558:230:0;;;;;;;;64538:210;;;;;;:::i;:::-;;:::i;:::-;;;15819:14:1;;15812:22;15794:41;;15782:2;15767:18;64538:210:0;15654:187:1;65119:108:0;;;;;;:::i;:::-;;:::i;:::-;;63561:44;;;:::i;:::-;;;;;;;:::i;46302:105::-;;;;;;:::i;:::-;;:::i;65379:222::-;;;;;;:::i;:::-;;:::i;34219:131::-;;;;;;:::i;:::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;;34219:131;70241:649;;;;;;:::i;:::-;;:::i;48496:442::-;;;;;;:::i;:::-;;:::i;34612:147::-;;;;;;:::i;:::-;;:::i;65612:694::-;;;;;;:::i;:::-;;:::i;70902:401::-;;;:::i;35660:218::-;;;;;;:::i;:::-;;:::i;63744:40::-;;;;;;46954:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66314:1241::-;;;:::i;71689:351::-;;;:::i;62647:353::-;;;;;;:::i;:::-;;:::i;67961:129::-;;;;;;:::i;:::-;;:::i;63901:41::-;;;;;;:::i;:::-;;:::i;67566:118::-;;;;;;:::i;:::-;;:::i;65239:128::-;;;;;;:::i;:::-;;:::i;68228:1376::-;;;;;;:::i;:::-;;:::i;32679:147::-;;;;;;:::i;:::-;;:::i;63612:28::-;;;:::i;31784:49::-;;31829:4;31784:49;;47551:155;;;;;;:::i;:::-;;:::i;67817:136::-;;;;;;:::i;:::-;;:::i;69841:388::-;;;;;;:::i;:::-;;:::i;63861:33::-;;;;;;63825:29;;;;;;63949:40;;;;;;69665:168;;;;;;:::i;:::-;;:::i;63392:62::-;;-1:-1:-1;;;;;;;;;;;63392:62:0;;35004:149;;;;;;:::i;:::-;;:::i;63791:27::-;;;;;;47778:168;;;;;;:::i;:::-;-1:-1:-1;;;;;47901:27:0;;;47877:4;47901:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;47778:168;65068:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26780:25:1;;;26836:2;26821:18;;26814:34;;;;26864:18;;;26857:34;;;;26922:2;26907:18;;26900:34;26965:3;26950:19;;26943:35;27009:3;26994:19;;26987:35;26767:3;26752:19;65068:42:0;26493:535:1;72048:288:0;;;;;;:::i;:::-;72258:69;72048:288;;;;;;;;;;;;-1:-1:-1;;;;;;16190:33:1;;;16172:52;;16160:2;16145:18;72048:288:0;16028:202:1;48018:401:0;;;;;;:::i;:::-;;:::i;67697:112::-;;;;;;:::i;:::-;;:::i;62318:321::-;;;;;;:::i;:::-;;:::i;63996:26::-;;;;;-1:-1:-1;;;;;63996:26:0;;;;;;-1:-1:-1;;;;;12510:32:1;;;12492:51;;12480:2;12465:18;63996:26:0;12346:203:1;68102:118:0;;;;;;:::i;:::-;;:::i;46558:230::-;46644:7;-1:-1:-1;;;;;46672:21:0;;46664:76;;;;-1:-1:-1;;;46664:76:0;;18889:2:1;46664:76:0;;;18871:21:1;18928:2;18908:18;;;18901:30;18967:34;18947:18;;;18940:62;-1:-1:-1;;;19018:18:1;;;19011:40;19068:19;;46664:76:0;;;;;;;;;-1:-1:-1;46758:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;46758:22:0;;;;;;;;;;;;46558:230::o;64538:210::-;64675:4;64704:36;64728:11;64704:23;:36::i;:::-;64697:43;64538:210;-1:-1:-1;;64538:210:0:o;65119:108::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;65204:15:::1;65212:6;65204:7;:15::i;:::-;65119:108:::0;;:::o;63561:44::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46302:105::-;46362:13;46395:4;46388:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46302:105;;;:::o;65379:222::-;-1:-1:-1;;;;;;;;;;;32275:16:0;32286:4;32275:10;:16::i;:::-;65520:30:::1;65526:7;65535:2;65539:6;65520:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;65587:6;65574;65581:2;65574:10;;;;;;;;:::i;:::-;;;;;;;;;:19;;;;:::i;:::-;65561:6;65568:2;65561:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:32:::0;-1:-1:-1;;;;65379:222:0:o;70241:649::-;18752:1;19350:7;;:19;;19342:63;;;;-1:-1:-1;;;19342:63:0;;25140:2:1;19342:63:0;;;25122:21:1;25179:2;25159:18;;;25152:30;25218:33;25198:18;;;25191:61;25269:18;;19342:63:0;24938:355:1;19342:63:0;18752:1;19483:7;:18;70339:10:::1;70307:21;70331:19:::0;;;:7:::1;:19;::::0;;;;70371:13:::1;::::0;::::1;::::0;:21;-1:-1:-1;70371:21:0::1;70362:31;;;::::0;::::1;;70405:19;:17;:19::i;:::-;70486:23:::0;;70447:18:::1;::::0;70468:41:::1;::::0;:15:::1;:41;:::i;:::-;70447:62;;70521:15;70569:6;70556:10;:19;70552:87;;;70599:22;70617:3;70599:13;:6:::0;70610:1:::1;70599:10;:13::i;:::-;:17:::0;::::1;:22::i;:::-;70589:32;;70552:87;70650:24;70677:19;:6:::0;70688:7;70677:10:::1;:19::i;:::-;70650:46;;70740:6;70724;:13;;;:22;;;;:::i;:::-;70708:13;::::0;::::1;:38:::0;70758:12:::1;::::0;:55:::1;::::0;-1:-1:-1;;;;;70758:12:0::1;70784:10;70796:16:::0;70758:25:::1;:55::i;:::-;70859:12;::::0;70825:57:::1;::::0;-1:-1:-1;;;;;70859:12:0::1;::::0;70874:7;70825:25:::1;:57::i;:::-;-1:-1:-1::0;;18708:1:0;19662:7;:22;-1:-1:-1;;;70241:649:0:o;48496:442::-;-1:-1:-1;;;;;48729:20:0;;684:10;48729:20;;:60;;-1:-1:-1;48753:36:0;48770:4;684:10;47778:168;:::i;48753:36::-;48707:160;;;;-1:-1:-1;;;48707:160:0;;20472:2:1;48707:160:0;;;20454:21:1;20511:2;20491:18;;;20484:30;20550:34;20530:18;;;20523:62;-1:-1:-1;;;20601:18:1;;;20594:48;20659:19;;48707:160:0;20270:414:1;48707:160:0;48878:52;48901:4;48907:2;48911:3;48916:7;48925:4;48878:22;:52::i;:::-;48496:442;;;;;:::o;34612:147::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;32275:16;32286:4;32275:10;:16::i;:::-;34726:25:::1;34737:4;34743:7;34726:10;:25::i;:::-;34612:147:::0;;;:::o;65612:694::-;-1:-1:-1;;;;;;;;;;;32275:16:0;32286:4;32275:10;:16::i;:::-;65770:3:::1;65760:6;:13;;65752:46;;;::::0;-1:-1:-1;;;65752:46:0;;22749:2:1;65752:46:0::1;::::0;::::1;22731:21:1::0;22788:2;22768:18;;;22761:30;-1:-1:-1;;;22807:18:1;;;22800:50;22867:18;;65752:46:0::1;22547:344:1::0;65752:46:0::1;-1:-1:-1::0;;;;;65833:16:0;::::1;65809:21;65833:16:::0;;;:7:::1;:16;::::0;;;;65910:23:::1;::::0;::::1;::::0;65833:16;;65809:21;65890:44:::1;::::0;:15:::1;::::0;:19:::1;:44::i;:::-;65860:74;;65970:6;65949:19;:27;65945:87;;;66019:1;65988:28;::::0;::::1;:32:::0;65945:87:::1;66050:28;::::0;::::1;::::0;66094:3:::1;::::0;66050:40:::1;::::0;66083:6;66050:32:::1;:40::i;:::-;:47;;66042:80;;;::::0;-1:-1:-1;;;66042:80:0;;22749:2:1;66042:80:0::1;::::0;::::1;22731:21:1::0;22788:2;22768:18;;;22761:30;-1:-1:-1;;;22807:18:1;;;22800:50;22867:18;;66042:80:0::1;22547:344:1::0;66042:80:0::1;66164:28;::::0;::::1;::::0;:40:::1;::::0;66197:6;66164:32:::1;:40::i;:::-;66133:28;::::0;;::::1;:71:::0;;;;66241:15:::1;66215:23;::::0;::::1;:41:::0;66267:31:::1;::::0;66273:7;;66285:6;66293:4;66267:5:::1;:31::i;:::-;65741:565;;65612:694:::0;;;;:::o;70902:401::-;70950:15;:13;:15::i;:::-;71009:10;70977:21;71001:19;;;:7;:19;;;;;71052;;71036:13;;;;:35;71032:75;;;71088:7;70902:401::o;71032:75::-;71119:16;71138:38;71156:19;;71138:6;:13;;;:17;;:38;;;;:::i;:::-;71119:57;;71206:38;71224:19;;71206:6;:13;;;:17;;:38;;;;:::i;:::-;71190:6;:13;;:54;;;;71258:34;71264:10;71275:1;71277:11;71258:34;;;;;;;;;;;;:5;:34::i;35660:218::-;-1:-1:-1;;;;;35756:23:0;;684:10;35756:23;35748:83;;;;-1:-1:-1;;;35748:83:0;;25844:2:1;35748:83:0;;;25826:21:1;25883:2;25863:18;;;25856:30;25922:34;25902:18;;;25895:62;-1:-1:-1;;;25973:18:1;;;25966:45;26028:19;;35748:83:0;25642:411:1;35748:83:0;35844:26;35856:4;35862:7;35844:11;:26::i;46954:524::-;47110:16;47171:3;:10;47152:8;:15;:29;47144:83;;;;-1:-1:-1;;;47144:83:0;;23919:2:1;47144:83:0;;;23901:21:1;23958:2;23938:18;;;23931:30;23997:34;23977:18;;;23970:62;-1:-1:-1;;;24048:18:1;;;24041:39;24097:19;;47144:83:0;23717:405:1;47144:83:0;47240:30;47287:8;:15;-1:-1:-1;;;;;47273:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47273:30:0;;47240:63;;47321:9;47316:122;47340:8;:15;47336:1;:19;47316:122;;;47396:30;47406:8;47415:1;47406:11;;;;;;;;:::i;:::-;;;;;;;47419:3;47423:1;47419:6;;;;;;;;:::i;:::-;;;;;;;47396:9;:30::i;:::-;47377:13;47391:1;47377:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;47357:3;;;:::i;:::-;;;47316:122;;;-1:-1:-1;47457:13:0;46954:524;-1:-1:-1;;;46954:524:0:o;66314:1241::-;66429:10;;66376:12;;:49;;-1:-1:-1;;;66376:49:0;;66399:10;66376:49;;;12766:34:1;66419:4:0;12816:18:1;;;12809:43;-1:-1:-1;;;;;66376:12:0;;;;:22;;12701:18:1;;66376:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;66368:106;;;;-1:-1:-1;;;66368:106:0;;19707:2:1;66368:106:0;;;19689:21:1;19746:2;19726:18;;;19719:30;19785:32;19765:18;;;19758:60;19835:18;;66368:106:0;19505:354:1;66368:106:0;66503:11;;66491:9;;:23;66483:46;;;;-1:-1:-1;;;66483:46:0;;21706:2:1;66483:46:0;;;21688:21:1;21745:2;21725:18;;;21718:30;-1:-1:-1;;;21764:18:1;;;21757:40;21814:18;;66483:46:0;21504:334:1;66483:46:0;66540:18;66561:32;66589:3;66561:23;66576:7;;66561:10;;:14;;:23;;;;:::i;:32::-;66540:53;;66604:18;66638:10;66625;;:23;;;;:::i;:::-;66700:11;;66659:12;;66604:44;;-1:-1:-1;66659:65:0;;-1:-1:-1;;;;;66659:12:0;;;;66689:10;;66700:11;66604:44;66659:29;:65::i;:::-;66784:12;;66735:75;;-1:-1:-1;;;;;66784:12:0;66765:10;66784:12;66799:10;66735:29;:75::i;:::-;66821:13;66944:3;66873:5;;66880:6;;;;;;;;;-1:-1:-1;;;;;66880:6:0;-1:-1:-1;;;;;66880:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66895:15;66912:16;66930:10;66856:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66846:96;;;;;;66837:106;;:110;;;;:::i;:::-;66958:5;:8;;66821:126;;-1:-1:-1;66958:5:0;:8;;;:::i;:::-;;;;-1:-1:-1;;66977:9:0;:12;;;:9;:12;;;:::i;:::-;;;;-1:-1:-1;;67025:2:0;67017:10;;67000:102;;67040:27;67046:10;67058:1;67061;67040:27;;;;;;;;;;;;:5;:27::i;:::-;67078:6;67085:1;67078:9;;;;;;;;:::i;:::-;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;67000:102;67124:2;67116:5;:10;;:24;;;;;67138:2;67130:5;:10;;67116:24;67112:104;;;67153:27;67159:10;67171:1;67174;67153:27;;;;;;;;;;;;:5;:27::i;:::-;67192:6;67199:1;67192:9;;;;;;;;:::i;:::-;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;67112:104;67238:2;67230:5;:10;;:24;;;;;67252:2;67244:5;:10;;67230:24;67226:104;;;67267:27;67273:10;67285:1;67288;67267:27;;;;;;;;;;;;:5;:27::i;:::-;67306:6;67313:1;67306:9;;;;;;;;:::i;:::-;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;67226:104;67352:2;67344:5;:10;;:24;;;;;67366:2;67358:5;:10;;67344:24;67340:104;;;67381:27;67387:10;67399:1;67402;67381:27;;;;;;;;;;;;:5;:27::i;:::-;67420:6;67427:1;67420:9;;;;;;;;:::i;:::-;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;67340:104;67459:5;67468:2;67459:11;67455:91;;;67483:27;67489:10;67501:1;67504;67483:27;;;;;;;;;;;;:5;:27::i;:::-;67522:6;67529:1;67522:9;;;;;;;;:::i;:::-;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;66366:1189;;;66314:1241::o;71689:351::-;71802:10;71740:7;71794:19;;;:7;:19;;;;;71847:13;;;;71740:7;;71847:33;;71875:4;;71847:23;;71865:4;71847:17;:23::i;:33::-;71824:56;;71891:22;71932:67;71986:12;71933:47;71953:6;:26;;;71933:15;:19;;:47;;;;:::i;:::-;71932:53;;:67::i;:::-;71916:6;:13;;;:83;;;;:::i;:::-;71891:108;71689:351;-1:-1:-1;;;;71689:351:0:o;62647:353::-;-1:-1:-1;;;;;62812:23:0;;684:10;62812:23;;:66;;-1:-1:-1;62839:39:0;62856:7;684:10;47778:168;:::i;62839:39::-;62790:157;;;;-1:-1:-1;;;62790:157:0;;;;;;;:::i;:::-;62960:32;62971:7;62980:3;62985:6;62960:10;:32::i;67961:129::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;68051:12:0::1;:31:::0;;-1:-1:-1;;;;;;68051:31:0::1;-1:-1:-1::0;;;;;68051:31:0;;;::::1;::::0;;;::::1;::::0;;67961:129::o;63901:41::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63901:41:0;:::o;67566:118::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67657:11:0::1;:20:::0;67566:118::o;65239:128::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;65327:32:::1;-1:-1:-1::0;;;;;;;;;;;65351:7:0::1;65327:10;:32::i;68228:1376::-:0;68327:1;68307:17;:21;68298:31;;;;;;68352:1;68349:2;:4;68340:35;;;;-1:-1:-1;;;68340:35:0;;22045:2:1;68340:35:0;;;22027:21:1;22084:2;22064:18;;;22057:30;-1:-1:-1;;;22103:18:1;;;22096:47;22160:18;;68340:35:0;21843:341:1;68340:35:0;68423:1;68395:24;68405:10;68416:2;68395:9;:24::i;:::-;:29;;68386:58;;;;-1:-1:-1;;;68386:58:0;;25500:2:1;68386:58:0;;;25482:21:1;25539:2;25519:18;;;25512:30;-1:-1:-1;;;25558:18:1;;;25551:45;25613:18;;68386:58:0;25298:339:1;68386:58:0;68465:12;68587:3;68516:5;;68523:6;;;;;;;;;-1:-1:-1;;;;;68523:6:0;-1:-1:-1;;;;;68523:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68538:15;68555:16;68573:10;68499:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68489:96;;;;;;68480:106;;:110;;;;:::i;:::-;68465:125;;68611:24;68638:46;68660:23;;68638:17;:21;;:46;;;;:::i;:::-;68611:73;-1:-1:-1;68695:10:0;68708:35;68740:2;68709:25;:17;68740:2;68709:21;:25::i;:::-;68708:31;;:35::i;:::-;68695:48;-1:-1:-1;68695:48:0;68805:1;68802:4;;68798:585;;;68835:16;68827:4;:24;68823:267;;68867:22;68873:10;68884:2;68887:1;68867:5;:22::i;:::-;68903:39;68909:10;68920:1;68922:19;68903:5;:39::i;:::-;68956:27;68962:10;68973:4;:2;68976:1;68973:4;:::i;:::-;68978:1;68956:27;;;;;;;;;;;;:5;:27::i;:::-;69058:4;:2;69061:1;69058:4;:::i;:::-;69002:74;;69032:10;;69002:74;;;;;68823:267;69115:16;69108:4;:23;69104:266;;;69147:22;69153:10;69164:2;69167:1;69147:5;:22::i;:::-;69183:39;69189:10;69200:1;69202:19;69183:5;:39::i;:::-;69236:27;69242:10;69253:4;:2;69256:1;69253:4;:::i;69236:27::-;69338:4;:2;69341:1;69338:4;:::i;:::-;69282:74;;69312:10;;69282:74;;;;;69104:266;69399:2;69403:1;69399:5;69395:193;;;69420:22;69426:10;69437:2;69440:1;69420:5;:22::i;:::-;69456:27;69462:10;69473:4;:2;69476:1;69473:4;:::i;69456:27::-;69558:4;:2;69561:1;69558:4;:::i;:::-;69502:74;;69532:10;;69502:74;;;;;68287:1317;;;;68228:1376;;:::o;32679:147::-;32765:4;32789:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32789:29:0;;;;;;;;;;;;;;;32679:147::o;63612:28::-;;;;;;;:::i;47551:155::-;47646:52;684:10;47679:8;47689;47646:18;:52::i;67817:136::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67913:23:0::1;:32:::0;67817:136::o;69841:388::-;18752:1;19350:7;;:19;;19342:63;;;;-1:-1:-1;;;19342:63:0;;25140:2:1;19342:63:0;;;25122:21:1;25179:2;25159:18;;;25152:30;25218:33;25198:18;;;25191:61;25269:18;;19342:63:0;24938:355:1;19342:63:0;18752:1;19483:7;:18;;;69913:12:::1;::::0;:34:::1;::::0;-1:-1:-1;;;69913:34:0;;69936:10:::1;69913:34:::0;;::::1;12492:51:1::0;;;;69949:6:0;;-1:-1:-1;;;;;69913:12:0;;::::1;::::0;:22:::1;::::0;12465:18:1;;69913:34:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;69905:51;;;::::0;::::1;;69969:19;:17;:19::i;:::-;70033:10;70001:21;70025:19:::0;;;:7:::1;:19;::::0;;;;70081:15:::1;70055:41:::0;;70123:13:::1;::::0;::::1;::::0;:25:::1;::::0;70141:6;70123:17:::1;:25::i;:::-;70107:13;::::0;::::1;:41:::0;70159:12:::1;::::0;:62:::1;::::0;-1:-1:-1;;;;;70159:12:0::1;70189:10;70208:4;70214:6:::0;70159:29:::1;:62::i;:::-;-1:-1:-1::0;;18708:1:0;19662:7;:22;69841:388::o;69665:168::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;69780:19:0::1;:45:::0;69665:168::o;35004:149::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;32275:16;32286:4;32275:10;:16::i;:::-;35119:26:::1;35131:4;35137:7;35119:11;:26::i;48018:401::-:0;-1:-1:-1;;;;;48226:20:0;;684:10;48226:20;;:60;;-1:-1:-1;48250:36:0;48267:4;684:10;47778:168;:::i;48250:36::-;48204:151;;;;-1:-1:-1;;;48204:151:0;;;;;;;:::i;:::-;48366:45;48384:4;48390:2;48394;48398:6;48406:4;48366:17;:45::i;67697:112::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67782:10:0::1;:19:::0;67697:112::o;62318:321::-;-1:-1:-1;;;;;62458:23:0;;684:10;62458:23;;:66;;-1:-1:-1;62485:39:0;62502:7;684:10;47778:168;:::i;62485:39::-;62436:157;;;;-1:-1:-1;;;62436:157:0;;;;;;;:::i;:::-;62606:25;62612:7;62621:2;62625:5;62606;:25::i;68102:118::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;68192:7:0::1;:20:::0;68102:118::o;3880:326::-;-1:-1:-1;;;;;4175:19:0;;:23;;;3880:326::o;32383:204::-;32468:4;-1:-1:-1;;;;;;32492:47:0;;-1:-1:-1;;;32492:47:0;;:87;;;32543:36;32567:11;32543:23;:36::i;33130:105::-;33197:30;33208:4;684:10;33197;:30::i;:::-;33130:105;:::o;52724:88::-;52791:13;;;;:4;;:13;;;;;:::i;53198:729::-;-1:-1:-1;;;;;53351:16:0;;53343:62;;;;-1:-1:-1;;;53343:62:0;;24738:2:1;53343:62:0;;;24720:21:1;24777:2;24757:18;;;24750:30;24816:34;24796:18;;;24789:62;-1:-1:-1;;;24867:18:1;;;24860:31;24908:19;;53343:62:0;24536:397:1;53343:62:0;684:10;53418:16;53483:21;53501:2;53483:17;:21::i;:::-;53460:44;;53515:24;53542:25;53560:6;53542:17;:25::i;:::-;53515:52;;53659:9;:13;;;;;;;;;;;-1:-1:-1;;;;;53659:17:0;;;;;;;;;:27;;53680:6;;53659:9;:27;;53680:6;;53659:27;:::i;:::-;;;;-1:-1:-1;;53702:52:0;;;26414:25:1;;;26470:2;26455:18;;26448:34;;;-1:-1:-1;;;;;53702:52:0;;;;53735:1;;53702:52;;;;;;26387:18:1;53702:52:0;;;;;;;53845:74;53876:8;53894:1;53898:2;53902;53906:6;53914:4;53845:30;:74::i;:::-;53332:595;;;53198:729;;;;:::o;14441:98::-;14499:7;14526:5;14530:1;14526;:5;:::i;:::-;14519:12;14441:98;-1:-1:-1;;;14441:98:0:o;14840:::-;14898:7;14925:5;14929:1;14925;:5;:::i;14084:98::-;14142:7;14169:5;14173:1;14169;:5;:::i;22473:211::-;22617:58;;-1:-1:-1;;;;;14831:32:1;;22617:58:0;;;14813:51:1;14880:18;;;14873:34;;;22590:86:0;;22610:5;;-1:-1:-1;;;22640:23:0;14786:18:1;;22617:58:0;;;;-1:-1:-1;;22617:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;22617:58:0;-1:-1:-1;;;;;;22617:58:0;;;;;;;;;;22590:19;:86::i;50734:1146::-;50961:7;:14;50947:3;:10;:28;50939:81;;;;-1:-1:-1;;;50939:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51039:16:0;;51031:66;;;;-1:-1:-1;;;51031:66:0;;;;;;;:::i;:::-;684:10;51110:16;51227:421;51251:3;:10;51247:1;:14;51227:421;;;51283:10;51296:3;51300:1;51296:6;;;;;;;;:::i;:::-;;;;;;;51283:19;;51317:14;51334:7;51342:1;51334:10;;;;;;;;:::i;:::-;;;;;;;;;;;;51361:19;51383:13;;;;;;;;;;-1:-1:-1;;;;;51383:19:0;;;;;;;;;;;;51334:10;;-1:-1:-1;51425:21:0;;;;51417:76;;;;-1:-1:-1;;;51417:76:0;;;;;;;:::i;:::-;51537:9;:13;;;;;;;;;;;-1:-1:-1;;;;;51537:19:0;;;;;;;;;;51559:20;;;51537:42;;51609:17;;;;;;;:27;;51559:20;;51537:9;51609:27;;51559:20;;51609:27;:::i;:::-;;;;;;;;51268:380;;;51263:3;;;;:::i;:::-;;;51227:421;;;;51695:2;-1:-1:-1;;;;;51665:47:0;51689:4;-1:-1:-1;;;;;51665:47:0;51679:8;-1:-1:-1;;;;;51665:47:0;;51699:3;51704:7;51665:47;;;;;;;:::i;:::-;;;;;;;;51797:75;51833:8;51843:4;51849:2;51853:3;51858:7;51867:4;51797:35;:75::i;37161:238::-;37245:22;37253:4;37259:7;37245;:22::i;:::-;37240:152;;37284:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;37284:29:0;;;;;;;;;:36;;-1:-1:-1;;37284:36:0;37316:4;37284:36;;;37367:12;684:10;;604:98;37367:12;-1:-1:-1;;;;;37340:40:0;37358:7;-1:-1:-1;;;;;37340:40:0;37352:4;37340:40;;;;;;;;;;37161:238;;:::o;13703:98::-;13761:7;13788:5;13792:1;13788;:5;:::i;71309:372::-;71388:10;71356:21;71380:19;;;:7;:19;;;;;71433:13;;;;71380:19;;71356:21;71433:33;;71461:4;;71433:23;;71451:4;71433:17;:23::i;:33::-;71410:56;;71477:14;71494:67;71548:12;71495:47;71515:6;:26;;;71495:15;:19;;:47;;;;:::i;71494:67::-;71477:84;;71605:6;71589;:13;;;:22;;;;:::i;:::-;71573:13;;;:38;-1:-1:-1;;71654:15:0;71625:26;;;;:44;71309:372::o;15405:98::-;15463:7;15490:5;15494:1;15490;:5;:::i;37531:239::-;37615:22;37623:4;37629:7;37615;:22::i;:::-;37611:152;;;37686:5;37654:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;37654:29:0;;;;;;;;;;:37;;-1:-1:-1;;37654:37:0;;;37711:40;684:10;;37654:12;;37711:40;;37686:5;37711:40;37531:239;;:::o;22692:248::-;22863:68;;-1:-1:-1;;;;;13952:15:1;;;22863:68:0;;;13934:34:1;14004:15;;13984:18;;;13977:43;14036:18;;;14029:34;;;22836:96:0;;22856:5;;-1:-1:-1;;;22886:27:0;13869:18:1;;22863:68:0;13694:375:1;22836:96:0;22692:248;;;;:::o;56499:969::-;-1:-1:-1;;;;;56651:18:0;;56643:66;;;;-1:-1:-1;;;56643:66:0;;;;;;;:::i;:::-;56742:7;:14;56728:3;:10;:28;56720:81;;;;-1:-1:-1;;;56720:81:0;;;;;;;:::i;:::-;56858:66;;;;;;;;;56814:16;56858:66;;;;684:10;;56937:373;56961:3;:10;56957:1;:14;56937:373;;;56993:10;57006:3;57010:1;57006:6;;;;;;;;:::i;:::-;;;;;;;56993:19;;57027:14;57044:7;57052:1;57044:10;;;;;;;;:::i;:::-;;;;;;;;;;;;57071:19;57093:13;;;;;;;;;;-1:-1:-1;;;;;57093:19:0;;;;;;;;;;;;57044:10;;-1:-1:-1;57135:21:0;;;;57127:70;;;;-1:-1:-1;;;57127:70:0;;;;;;;:::i;:::-;57241:9;:13;;;;;;;;;;;-1:-1:-1;;;;;57241:19:0;;;;;;;;;;57263:20;;57241:42;;56973:3;;;;:::i;:::-;;;;56937:373;;;;57365:1;-1:-1:-1;;;;;57327:55:0;57351:4;-1:-1:-1;;;;;57327:55:0;57341:8;-1:-1:-1;;;;;57327:55:0;;57369:3;57374:7;57327:55;;;;;;;:::i;:::-;;;;;;;;57395:65;;;;;;;;;57439:1;57395:65;;;65612:694;55441:808;-1:-1:-1;;;;;55568:18:0;;55560:66;;;;-1:-1:-1;;;55560:66:0;;;;;;;:::i;:::-;684:10;55639:16;55704:21;55722:2;55704:17;:21::i;:::-;55681:44;;55736:24;55763:25;55781:6;55763:17;:25::i;:::-;55801:66;;;;;;;;;-1:-1:-1;55801:66:0;;;;55902:13;;;;;;;;;-1:-1:-1;;;;;55902:19:0;;;;;;;;55736:52;;-1:-1:-1;55940:21:0;;;;55932:70;;;;-1:-1:-1;;;55932:70:0;;;;;;;:::i;:::-;56038:9;:13;;;;;;;;;;;-1:-1:-1;;;;;56038:19:0;;;;;;;;;;;;56060:20;;;56038:42;;56109:54;;26414:25:1;;;26455:18;;;26448:34;;;56038:19:0;;56109:54;;;;;;26387:18:1;56109:54:0;;;;;;;56176:65;;;;;;;;;56220:1;56176:65;;;65612:694;57611:331;57766:8;-1:-1:-1;;;;;57757:17:0;:5;-1:-1:-1;;;;;57757:17:0;;;57749:71;;;;-1:-1:-1;;;57749:71:0;;23098:2:1;57749:71:0;;;23080:21:1;23137:2;23117:18;;;23110:30;23176:34;23156:18;;;23149:62;-1:-1:-1;;;23227:18:1;;;23220:39;23276:19;;57749:71:0;22896:405:1;57749:71:0;-1:-1:-1;;;;;57831:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57831:46:0;;;;;;;;;;57893:41;;15794::1;;;57893::0;;15767:18:1;57893:41:0;;;;;;;57611:331;;;:::o;49402:974::-;-1:-1:-1;;;;;49590:16:0;;49582:66;;;;-1:-1:-1;;;49582:66:0;;;;;;;:::i;:::-;684:10;49661:16;49726:21;49744:2;49726:17;:21::i;:::-;49703:44;;49758:24;49785:25;49803:6;49785:17;:25::i;:::-;49758:52;;49896:19;49918:13;;;;;;;;;;;-1:-1:-1;;;;;49918:19:0;;;;;;;;;;49956:21;;;;49948:76;;;;-1:-1:-1;;;49948:76:0;;;;;;;:::i;:::-;50060:9;:13;;;;;;;;;;;-1:-1:-1;;;;;50060:19:0;;;;;;;;;;50082:20;;;50060:42;;50124:17;;;;;;;:27;;50082:20;;50060:9;50124:27;;50082:20;;50124:27;:::i;:::-;;;;-1:-1:-1;;50169:46:0;;;26414:25:1;;;26470:2;26455:18;;26448:34;;;-1:-1:-1;;;;;50169:46:0;;;;;;;;;;;;;;26387:18:1;50169:46:0;;;;;;;50300:68;50331:8;50341:4;50347:2;50351;50355:6;50363:4;50300:30;:68::i;:::-;49571:805;;;;49402:974;;;;;:::o;45581:310::-;45683:4;-1:-1:-1;;;;;;45720:41:0;;-1:-1:-1;;;45720:41:0;;:110;;-1:-1:-1;;;;;;;45778:52:0;;-1:-1:-1;;;45778:52:0;45720:110;:163;;;-1:-1:-1;;;;;;;;;;27043:40:0;;;45847:36;26934:157;33525:505;33614:22;33622:4;33628:7;33614;:22::i;:::-;33609:414;;33802:41;33830:7;-1:-1:-1;;;;;33802:41:0;33840:2;33802:19;:41::i;:::-;33916:38;33944:4;33951:2;33916:19;:38::i;:::-;33707:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;33707:270:0;;;;;;;;;;-1:-1:-1;;;33653:358:0;;;;;;;:::i;61877:198::-;61997:16;;;62011:1;61997:16;;;;;;;;;61943;;61972:22;;61997:16;;;;;;;;;;;;-1:-1:-1;61997:16:0;61972:41;;62035:7;62024:5;62030:1;62024:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;62062:5;61877:198;-1:-1:-1;;61877:198:0:o;60304:744::-;-1:-1:-1;;;;;60519:13:0;;4175:19;:23;60515:526;;60555:72;;-1:-1:-1;;;60555:72:0;;-1:-1:-1;;;;;60555:38:0;;;;;:72;;60594:8;;60604:4;;60610:2;;60614:6;;60622:4;;60555:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60555:72:0;;;;;;;;-1:-1:-1;;60555:72:0;;;;;;;;;;;;:::i;:::-;;;60551:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;60903:6;60896:14;;-1:-1:-1;;;60896:14:0;;;;;;;;:::i;60551:479::-;;;60952:62;;-1:-1:-1;;;60952:62:0;;16883:2:1;60952:62:0;;;16865:21:1;16922:2;16902:18;;;16895:30;16961:34;16941:18;;;16934:62;-1:-1:-1;;;17012:18:1;;;17005:50;17072:19;;60952:62:0;16681:416:1;60551:479:0;-1:-1:-1;;;;;;60677:55:0;;-1:-1:-1;;;60677:55:0;60673:154;;60757:50;;-1:-1:-1;;;60757:50:0;;;;;;;:::i;25046:716::-;25470:23;25496:69;25524:4;25496:69;;;;;;;;;;;;;;;;;25504:5;-1:-1:-1;;;;;25496:27:0;;;:69;;;;;:::i;:::-;25580:17;;25470:95;;-1:-1:-1;25580:21:0;25576:179;;25677:10;25666:30;;;;;;;;;;;;:::i;:::-;25658:85;;;;-1:-1:-1;;;25658:85:0;;23508:2:1;25658:85:0;;;23490:21:1;23547:2;23527:18;;;23520:30;23586:34;23566:18;;;23559:62;-1:-1:-1;;;23637:18:1;;;23630:40;23687:19;;25658:85:0;23306:406:1;61056:813:0;-1:-1:-1;;;;;61296:13:0;;4175:19;:23;61292:570;;61332:79;;-1:-1:-1;;;61332:79:0;;-1:-1:-1;;;;;61332:43:0;;;;;:79;;61376:8;;61386:4;;61392:3;;61397:7;;61406:4;;61332:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61332:79:0;;;;;;;;-1:-1:-1;;61332:79:0;;;;;;;;;;;;:::i;:::-;;;61328:523;;;;:::i;:::-;-1:-1:-1;;;;;;61493:60:0;;-1:-1:-1;;;61493:60:0;61489:159;;61578:50;;-1:-1:-1;;;61578:50:0;;;;;;;:::i;2345:451::-;2420:13;2446:19;2478:10;2482:6;2478:1;:10;:::i;:::-;:14;;2491:1;2478:14;:::i;:::-;-1:-1:-1;;;;;2468:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2468:25:0;;2446:47;;-1:-1:-1;;;2504:6:0;2511:1;2504:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;2504:15:0;;;;;;;;;-1:-1:-1;;;2530:6:0;2537:1;2530:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;2530:15:0;;;;;;;;-1:-1:-1;2561:9:0;2573:10;2577:6;2573:1;:10;:::i;:::-;:14;;2586:1;2573:14;:::i;:::-;2561:26;;2556:135;2593:1;2589;:5;2556:135;;;-1:-1:-1;;;2641:5:0;2649:3;2641:11;2628:25;;;;;;;:::i;:::-;;;;2616:6;2623:1;2616:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;2616:37:0;;;;;;;;-1:-1:-1;2678:1:0;2668:11;;;;;2596:3;;;:::i;:::-;;;2556:135;;;-1:-1:-1;2709:10:0;;2701:55;;;;-1:-1:-1;;;2701:55:0;;17304:2:1;2701:55:0;;;17286:21:1;;;17323:18;;;17316:30;17382:34;17362:18;;;17355:62;17434:18;;2701:55:0;17102:356:1;6625:229:0;6762:12;6794:52;6816:6;6824:4;6830:1;6833:12;6762;-1:-1:-1;;;;;4175:19:0;;;8032:60;;;;-1:-1:-1;;;8032:60:0;;22391:2:1;8032:60:0;;;22373:21:1;22430:2;22410:18;;;22403:30;22469:31;22449:18;;;22442:59;22518:18;;8032:60:0;22189:353:1;8032:60:0;8106:12;8120:23;8147:6;-1:-1:-1;;;;;8147:11:0;8166:5;8173:4;8147:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8105:73;;;;8196:51;8213:7;8222:10;8234:12;8196:16;:51::i;:::-;8189:58;7745:510;-1:-1:-1;;;;;;;7745:510:0:o;10431:712::-;10581:12;10610:7;10606:530;;;-1:-1:-1;10641:10:0;10634:17;;10606:530;10755:17;;:21;10751:374;;10953:10;10947:17;11014:15;11001:10;10997:2;10993:19;10986:44;10751:374;11096:12;11089:20;;-1:-1:-1;;;11089:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;-1:-1:-1;;;;;2566:2:1;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:877::-;3140:6;3148;3156;3164;3172;3180;3233:3;3221:9;3212:7;3208:23;3204:33;3201:53;;;3250:1;3247;3240:12;3201:53;3273:29;3292:9;3273:29;:::i;:::-;3263:39;;3321:38;3355:2;3344:9;3340:18;3321:38;:::i;:::-;3311:48;;3406:2;3395:9;3391:18;3378:32;3368:42;;3457:2;3446:9;3442:18;3429:32;3419:42;;3512:3;3501:9;3497:19;3484:33;-1:-1:-1;;;;;3577:2:1;3569:6;3566:14;3563:34;;;3593:1;3590;3583:12;3563:34;3631:6;3620:9;3616:22;3606:32;;3676:7;3669:4;3665:2;3661:13;3657:27;3647:55;;3698:1;3695;3688:12;3647:55;3738:2;3725:16;3764:2;3756:6;3753:14;3750:34;;;3780:1;3777;3770:12;3750:34;3825:7;3820:2;3811:6;3807:2;3803:15;3799:24;3796:37;3793:57;;;3846:1;3843;3836:12;3793:57;3877:2;3873;3869:11;3859:21;;3899:6;3889:16;;;;;3034:877;;;;;;;;:::o;3916:606::-;4020:6;4028;4036;4044;4052;4105:3;4093:9;4084:7;4080:23;4076:33;4073:53;;;4122:1;4119;4112:12;4073:53;4145:29;4164:9;4145:29;:::i;:::-;4135:39;;4193:38;4227:2;4216:9;4212:18;4193:38;:::i;:::-;4183:48;;4278:2;4267:9;4263:18;4250:32;4240:42;;4329:2;4318:9;4314:18;4301:32;4291:42;;4384:3;4373:9;4369:19;4356:33;-1:-1:-1;;;;;4404:6:1;4401:30;4398:50;;;4444:1;4441;4434:12;4398:50;4467:49;4508:7;4499:6;4488:9;4484:22;4467:49;:::i;4527:669::-;4654:6;4662;4670;4723:2;4711:9;4702:7;4698:23;4694:32;4691:52;;;4739:1;4736;4729:12;4691:52;4762:29;4781:9;4762:29;:::i;:::-;4752:39;;4842:2;4831:9;4827:18;4814:32;-1:-1:-1;;;;;4906:2:1;4898:6;4895:14;4892:34;;;4922:1;4919;4912:12;4892:34;4945:61;4998:7;4989:6;4978:9;4974:22;4945:61;:::i;:::-;4935:71;;5059:2;5048:9;5044:18;5031:32;5015:48;;5088:2;5078:8;5075:16;5072:36;;;5104:1;5101;5094:12;5072:36;;5127:63;5182:7;5171:8;5160:9;5156:24;5127:63;:::i;:::-;5117:73;;;4527:669;;;;;:::o;5201:315::-;5266:6;5274;5327:2;5315:9;5306:7;5302:23;5298:32;5295:52;;;5343:1;5340;5333:12;5295:52;5366:29;5385:9;5366:29;:::i;:::-;5356:39;;5445:2;5434:9;5430:18;5417:32;5458:28;5480:5;5458:28;:::i;:::-;5505:5;5495:15;;;5201:315;;;;;:::o;5521:254::-;5589:6;5597;5650:2;5638:9;5629:7;5625:23;5621:32;5618:52;;;5666:1;5663;5656:12;5618:52;5689:29;5708:9;5689:29;:::i;:::-;5679:39;5765:2;5750:18;;;;5737:32;;-1:-1:-1;;;5521:254:1:o;5780:462::-;5866:6;5874;5882;5935:2;5923:9;5914:7;5910:23;5906:32;5903:52;;;5951:1;5948;5941:12;5903:52;5974:29;5993:9;5974:29;:::i;:::-;5964:39;;6050:2;6039:9;6035:18;6022:32;6012:42;;6105:2;6094:9;6090:18;6077:32;-1:-1:-1;;;;;6124:6:1;6121:30;6118:50;;;6164:1;6161;6154:12;6118:50;6187:49;6228:7;6219:6;6208:9;6204:22;6187:49;:::i;6247:322::-;6324:6;6332;6340;6393:2;6381:9;6372:7;6368:23;6364:32;6361:52;;;6409:1;6406;6399:12;6361:52;6432:29;6451:9;6432:29;:::i;:::-;6422:39;6508:2;6493:18;;6480:32;;-1:-1:-1;6559:2:1;6544:18;;;6531:32;;6247:322;-1:-1:-1;;;6247:322:1:o;6574:1219::-;6692:6;6700;6753:2;6741:9;6732:7;6728:23;6724:32;6721:52;;;6769:1;6766;6759:12;6721:52;6809:9;6796:23;-1:-1:-1;;;;;6879:2:1;6871:6;6868:14;6865:34;;;6895:1;6892;6885:12;6865:34;6933:6;6922:9;6918:22;6908:32;;6978:7;6971:4;6967:2;6963:13;6959:27;6949:55;;7000:1;6997;6990:12;6949:55;7036:2;7023:16;7058:4;7081:43;7121:2;7081:43;:::i;:::-;7153:2;7147:9;7165:31;7193:2;7185:6;7165:31;:::i;:::-;7231:18;;;7265:15;;;;-1:-1:-1;7300:11:1;;;7342:1;7338:10;;;7330:19;;7326:28;;7323:41;-1:-1:-1;7320:61:1;;;7377:1;7374;7367:12;7320:61;7399:1;7390:10;;7409:169;7423:2;7420:1;7417:9;7409:169;;;7480:23;7499:3;7480:23;:::i;:::-;7468:36;;7441:1;7434:9;;;;;7524:12;;;;7556;;7409:169;;;-1:-1:-1;7597:6:1;-1:-1:-1;;7641:18:1;;7628:32;;-1:-1:-1;;7672:16:1;;;7669:36;;;7701:1;7698;7691:12;7669:36;;7724:63;7779:7;7768:8;7757:9;7753:24;7724:63;:::i;:::-;7714:73;;;6574:1219;;;;;:::o;7798:245::-;7865:6;7918:2;7906:9;7897:7;7893:23;7889:32;7886:52;;;7934:1;7931;7924:12;7886:52;7966:9;7960:16;7985:28;8007:5;7985:28;:::i;8048:180::-;8107:6;8160:2;8148:9;8139:7;8135:23;8131:32;8128:52;;;8176:1;8173;8166:12;8128:52;-1:-1:-1;8199:23:1;;8048:180;-1:-1:-1;8048:180:1:o;8233:254::-;8301:6;8309;8362:2;8350:9;8341:7;8337:23;8333:32;8330:52;;;8378:1;8375;8368:12;8330:52;8414:9;8401:23;8391:33;;8443:38;8477:2;8466:9;8462:18;8443:38;:::i;8492:245::-;8550:6;8603:2;8591:9;8582:7;8578:23;8574:32;8571:52;;;8619:1;8616;8609:12;8571:52;8658:9;8645:23;8677:30;8701:5;8677:30;:::i;8742:249::-;8811:6;8864:2;8852:9;8843:7;8839:23;8835:32;8832:52;;;8880:1;8877;8870:12;8832:52;8912:9;8906:16;8931:30;8955:5;8931:30;:::i;8996:450::-;9065:6;9118:2;9106:9;9097:7;9093:23;9089:32;9086:52;;;9134:1;9131;9124:12;9086:52;9174:9;9161:23;-1:-1:-1;;;;;9199:6:1;9196:30;9193:50;;;9239:1;9236;9229:12;9193:50;9262:22;;9315:4;9307:13;;9303:27;-1:-1:-1;9293:55:1;;9344:1;9341;9334:12;9293:55;9367:73;9432:7;9427:2;9414:16;9409:2;9405;9401:11;9367:73;:::i;9636:184::-;9706:6;9759:2;9747:9;9738:7;9734:23;9730:32;9727:52;;;9775:1;9772;9765:12;9727:52;-1:-1:-1;9798:16:1;;9636:184;-1:-1:-1;9636:184:1:o;9825:248::-;9893:6;9901;9954:2;9942:9;9933:7;9929:23;9925:32;9922:52;;;9970:1;9967;9960:12;9922:52;-1:-1:-1;;9993:23:1;;;10063:2;10048:18;;;10035:32;;-1:-1:-1;9825:248:1:o;10078:435::-;10131:3;10169:5;10163:12;10196:6;10191:3;10184:19;10222:4;10251:2;10246:3;10242:12;10235:19;;10288:2;10281:5;10277:14;10309:1;10319:169;10333:6;10330:1;10327:13;10319:169;;;10394:13;;10382:26;;10428:12;;;;10463:15;;;;10355:1;10348:9;10319:169;;;-1:-1:-1;10504:3:1;;10078:435;-1:-1:-1;;;;;10078:435:1:o;10518:257::-;10559:3;10597:5;10591:12;10624:6;10619:3;10612:19;10640:63;10696:6;10689:4;10684:3;10680:14;10673:4;10666:5;10662:16;10640:63;:::i;:::-;10757:2;10736:15;-1:-1:-1;;10732:29:1;10723:39;;;;10764:4;10719:50;;10518:257;-1:-1:-1;;10518:257:1:o;10780:274::-;10909:3;10947:6;10941:13;10963:53;11009:6;11004:3;10997:4;10989:6;10985:17;10963:53;:::i;:::-;11032:16;;;;;10780:274;-1:-1:-1;;10780:274:1:o;11059:786::-;11470:25;11465:3;11458:38;11440:3;11525:6;11519:13;11541:62;11596:6;11591:2;11586:3;11582:12;11575:4;11567:6;11563:17;11541:62;:::i;:::-;-1:-1:-1;;;11662:2:1;11622:16;;;11654:11;;;11647:40;11712:13;;11734:63;11712:13;11783:2;11775:11;;11768:4;11756:17;;11734:63;:::i;:::-;11817:17;11836:2;11813:26;;11059:786;-1:-1:-1;;;;11059:786:1:o;11850:491::-;12091:19;;;12135:2;12126:12;;12119:28;;;;12172:2;12163:12;;12156:28;;;;12209:2;12200:12;;;12193:28;;;;12256:15;-1:-1:-1;;12252:53:1;12246:3;12237:13;;12230:76;12331:3;12322:13;;11850:491::o;12863:826::-;-1:-1:-1;;;;;13260:15:1;;;13242:34;;13312:15;;13307:2;13292:18;;13285:43;13222:3;13359:2;13344:18;;13337:31;;;13185:4;;13391:57;;13428:19;;13420:6;13391:57;:::i;:::-;13496:9;13488:6;13484:22;13479:2;13468:9;13464:18;13457:50;13530:44;13567:6;13559;13530:44;:::i;:::-;13516:58;;13623:9;13615:6;13611:22;13605:3;13594:9;13590:19;13583:51;13651:32;13676:6;13668;13651:32;:::i;:::-;13643:40;12863:826;-1:-1:-1;;;;;;;;12863:826:1:o;14074:560::-;-1:-1:-1;;;;;14371:15:1;;;14353:34;;14423:15;;14418:2;14403:18;;14396:43;14470:2;14455:18;;14448:34;;;14513:2;14498:18;;14491:34;;;14333:3;14556;14541:19;;14534:32;;;14296:4;;14583:45;;14608:19;;14600:6;14583:45;:::i;14918:261::-;15097:2;15086:9;15079:21;15060:4;15117:56;15169:2;15158:9;15154:18;15146:6;15117:56;:::i;15184:465::-;15441:2;15430:9;15423:21;15404:4;15467:56;15519:2;15508:9;15504:18;15496:6;15467:56;:::i;:::-;15571:9;15563:6;15559:22;15554:2;15543:9;15539:18;15532:50;15599:44;15636:6;15628;15599:44;:::i;:::-;15591:52;15184:465;-1:-1:-1;;;;;15184:465:1:o;16457:219::-;16606:2;16595:9;16588:21;16569:4;16626:44;16666:2;16655:9;16651:18;16643:6;16626:44;:::i;17463:404::-;17665:2;17647:21;;;17704:2;17684:18;;;17677:30;17743:34;17738:2;17723:18;;17716:62;-1:-1:-1;;;17809:2:1;17794:18;;17787:38;17857:3;17842:19;;17463:404::o;17872:400::-;18074:2;18056:21;;;18113:2;18093:18;;;18086:30;18152:34;18147:2;18132:18;;18125:62;-1:-1:-1;;;18218:2:1;18203:18;;18196:34;18262:3;18247:19;;17872:400::o;18277:405::-;18479:2;18461:21;;;18518:2;18498:18;;;18491:30;18557:34;18552:2;18537:18;;18530:62;-1:-1:-1;;;18623:2:1;18608:18;;18601:39;18672:3;18657:19;;18277:405::o;19864:401::-;20066:2;20048:21;;;20105:2;20085:18;;;20078:30;20144:34;20139:2;20124:18;;20117:62;-1:-1:-1;;;20210:2:1;20195:18;;20188:35;20255:3;20240:19;;19864:401::o;20689:399::-;20891:2;20873:21;;;20930:2;20910:18;;;20903:30;20969:34;20964:2;20949:18;;20942:62;-1:-1:-1;;;21035:2:1;21020:18;;21013:33;21078:3;21063:19;;20689:399::o;21093:406::-;21295:2;21277:21;;;21334:2;21314:18;;;21307:30;21373:34;21368:2;21353:18;;21346:62;-1:-1:-1;;;21439:2:1;21424:18;;21417:40;21489:3;21474:19;;21093:406::o;24127:404::-;24329:2;24311:21;;;24368:2;24348:18;;;24341:30;24407:34;24402:2;24387:18;;24380:62;-1:-1:-1;;;24473:2:1;24458:18;;24451:38;24521:3;24506:19;;24127:404::o;27033:183::-;27093:4;-1:-1:-1;;;;;27118:6:1;27115:30;27112:56;;;27148:18;;:::i;:::-;-1:-1:-1;27193:1:1;27189:14;27205:4;27185:25;;27033:183::o;27221:128::-;27261:3;27292:1;27288:6;27285:1;27282:13;27279:39;;;27298:18;;:::i;:::-;-1:-1:-1;27334:9:1;;27221:128::o;27354:120::-;27394:1;27420;27410:35;;27425:18;;:::i;:::-;-1:-1:-1;27459:9:1;;27354:120::o;27479:168::-;27519:7;27585:1;27581;27577:6;27573:14;27570:1;27567:21;27562:1;27555:9;27548:17;27544:45;27541:71;;;27592:18;;:::i;:::-;-1:-1:-1;27632:9:1;;27479:168::o;27652:125::-;27692:4;27720:1;27717;27714:8;27711:34;;;27725:18;;:::i;:::-;-1:-1:-1;27762:9:1;;27652:125::o;27782:258::-;27854:1;27864:113;27878:6;27875:1;27872:13;27864:113;;;27954:11;;;27948:18;27935:11;;;27928:39;27900:2;27893:10;27864:113;;;27995:6;27992:1;27989:13;27986:48;;;-1:-1:-1;;28030:1:1;28012:16;;28005:27;27782:258::o;28045:136::-;28084:3;28112:5;28102:39;;28121:18;;:::i;:::-;-1:-1:-1;;;28157:18:1;;28045:136::o;28186:380::-;28265:1;28261:12;;;;28308;;;28329:61;;28383:4;28375:6;28371:17;28361:27;;28329:61;28436:2;28428:6;28425:14;28405:18;28402:38;28399:161;;;28482:10;28477:3;28473:20;28470:1;28463:31;28517:4;28514:1;28507:15;28545:4;28542:1;28535:15;28399:161;;28186:380;;;:::o;28571:249::-;28681:2;28662:13;;-1:-1:-1;;28658:27:1;28646:40;;-1:-1:-1;;;;;28701:34:1;;28737:22;;;28698:62;28695:88;;;28763:18;;:::i;:::-;28799:2;28792:22;-1:-1:-1;;28571:249:1:o;28825:135::-;28864:3;-1:-1:-1;;28885:17:1;;28882:43;;;28905:18;;:::i;:::-;-1:-1:-1;28952:1:1;28941:13;;28825:135::o;28965:112::-;28997:1;29023;29013:35;;29028:18;;:::i;:::-;-1:-1:-1;29062:9:1;;28965:112::o;29082:127::-;29143:10;29138:3;29134:20;29131:1;29124:31;29174:4;29171:1;29164:15;29198:4;29195:1;29188:15;29214:127;29275:10;29270:3;29266:20;29263:1;29256:31;29306:4;29303:1;29296:15;29330:4;29327:1;29320:15;29346:127;29407:10;29402:3;29398:20;29395:1;29388:31;29438:4;29435:1;29428:15;29462:4;29459:1;29452:15;29478:127;29539:10;29534:3;29530:20;29527:1;29520:31;29570:4;29567:1;29560:15;29594:4;29591:1;29584:15;29610:179;29645:3;29687:1;29669:16;29666:23;29663:120;;;29733:1;29730;29727;29712:23;-1:-1:-1;29770:1:1;29764:8;29759:3;29755:18;29663:120;29610:179;:::o;29794:671::-;29833:3;29875:4;29857:16;29854:26;29851:39;;;29794:671;:::o;29851:39::-;29917:2;29911:9;-1:-1:-1;;29982:16:1;29978:25;;29975:1;29911:9;29954:50;30033:4;30027:11;30057:16;-1:-1:-1;;;;;30163:2:1;30156:4;30148:6;30144:17;30141:25;30136:2;30128:6;30125:14;30122:45;30119:58;;;30170:5;;;;;29794:671;:::o;30119:58::-;30207:6;30201:4;30197:17;30186:28;;30243:3;30237:10;30270:2;30262:6;30259:14;30256:27;;;30276:5;;;;;;29794:671;:::o;30256:27::-;30360:2;30341:16;30335:4;30331:27;30327:36;30320:4;30311:6;30306:3;30302:16;30298:27;30295:69;30292:82;;;30367:5;;;;;;29794:671;:::o;30292:82::-;30383:57;30434:4;30425:6;30417;30413:19;30409:30;30403:4;30383:57;:::i;:::-;-1:-1:-1;30456:3:1;;29794:671;-1:-1:-1;;;;;29794:671:1:o;30470:118::-;30556:5;30549:13;30542:21;30535:5;30532:32;30522:60;;30578:1;30575;30568:12;30593:131;-1:-1:-1;;;;;;30667:32:1;;30657:43;;30647:71;;30714:1;30711;30704:12
Swarm Source
ipfs://f19211e57cc674fb98339c20bfc65c1919fbdbf3aa8eca4cfb45dd3c0feea4c7
[ 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.