ERC-1155
Overview
Max Total Supply
1,000 RAAP
Holders
549
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RevolutionaryAlpha
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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); } } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @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 be 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; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @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: balance query for the zero address"); 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(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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); _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); _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(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * 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(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); 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); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * 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); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {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 `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 _beforeTokenTransfer( 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; } } // File: contracts/revolutionaryalpha.sol pragma solidity >= 0.8.0 < 0.9.0; contract RevolutionaryAlpha is ERC1155, Ownable { using Strings for uint256; string public name = "Revolutionary Alpha Passes"; string public symbol = "RAAP"; string public baseURI = "ipfs://QmTprbZxKY3rKjZMzacWMNg1E2pqFSL19iYHJ6HGZ68UrN/"; uint32 public startDate = 1647190800; // Sunday, March 13, 2022 5PM GMT uint256 public ACCESS_PASS_PRICE = 0.03 ether; mapping(uint32 => uint256) public totalSupply; mapping(uint32 => uint32) public maxSupply; constructor() ERC1155(baseURI) { maxSupply[1] = 920; // Alpha Pass maxSupply[2] = 80; // Inner Circle Pass } function setURI(string memory _uri) external onlyOwner { baseURI = _uri; } function setStartDate(uint32 timestamp) external onlyOwner { startDate = timestamp; } function saleIsActive() public view returns (bool) { return startDate <= block.timestamp; } function mintAccessPass(uint32 quantity) external payable { // Only mints the access pass. require(saleIsActive(), "Sale is not active."); require(quantity > 0, "Count must be greater than 0."); require(msg.value >= ACCESS_PASS_PRICE * quantity); require( totalSupply[1] + quantity <= maxSupply[1], "Count exceeds the maximum allowed supply." ); totalSupply[1] += quantity; _mint(msg.sender, 1, quantity, ""); } function mintForAddress( address to, uint32 id, uint32 quantity ) external onlyOwner { totalSupply[id] += quantity; _mint(to, id, quantity, ""); } function batchMintForAddress( address[] calldata to, uint32 id, uint256[] calldata quantity ) external onlyOwner { uint32 i; for (i=0; i<quantity.length; i++) { totalSupply[id] += quantity[i]; _mint(to[i], id, quantity[i], ""); } } function setSupply(uint32 _id, uint32 _maxSupply) public onlyOwner { maxSupply[_id] = _maxSupply; } function uri(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"ACCESS_PASS_PRICE","outputs":[{"internalType":"uint256","name":"","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","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":"uint32","name":"","type":"uint32"}],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"quantity","type":"uint32"}],"name":"mintAccessPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"uint32","name":"quantity","type":"uint32"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_id","type":"uint32"},{"internalType":"uint32","name":"_maxSupply","type":"uint32"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","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":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601a60808190527f5265766f6c7574696f6e61727920416c7068612050617373657300000000000060a090815262000040916004919062000255565b50604080518082019091526004808252630524141560e41b60209092019182526200006e9160059162000255565b506040518060600160405280603681526020016200275d6036913980516200009f9160069160209091019062000255565b506007805463ffffffff191663622e2310179055666a94d74f430000600855348015620000cb57600080fd5b5060068054620000db90620002fb565b80601f01602080910402602001604051908101604052809291908181526020018280546200010990620002fb565b80156200015a5780601f106200012e576101008083540402835291602001916200015a565b820191906000526020600020905b8154815290600101906020018083116200013c57829003601f168201915b50505050506200017081620001ea60201b60201c565b506200017c3362000203565b600a6020527fbbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc7805463ffffffff199081166103981790915560026000527fbff4442b8ed600beeb8e26b1279a0f0d14c6edfaec26d968ee13c86f7d4c2ba88054909116605017905562000338565b8051620001ff90600290602084019062000255565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200026390620002fb565b90600052602060002090601f016020900481019282620002875760008555620002d2565b82601f10620002a257805160ff1916838001178555620002d2565b82800160010185558215620002d2579182015b82811115620002d2578251825591602001919060010190620002b5565b50620002e0929150620002e4565b5090565b5b80821115620002e05760008155600101620002e5565b600181811c908216806200031057607f821691505b602082108114156200033257634e487b7160e01b600052602260045260246000fd5b50919050565b61241580620003486000396000f3fe6080604052600436106101805760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610470578063eb8d2444146104b9578063f242432a146104d9578063f2fde38b146104f957600080fd5b8063a22cb4651461041a578063bf5f956a1461043a578063c373c0ef1461045057600080fd5b80636c0360eb14610353578063715018a6146103685780637288d3811461037d5780637b37ff95146103aa5780638da5cb5b146103dd57806395d89b411461040557600080fd5b80630b97bc861161013e5780633ccfd60b116101185780633ccfd60b146102d15780634e1273f4146102e65780634e9df54d146103135780636904efca1461033357600080fd5b80630b97bc861461025f5780630e89341c146102915780632eb2c2d6146102b157600080fd5b8062fdd58e1461018557806301ffc9a7146101b857806302fe5305146101e857806303ec76ad1461020a57806306fdde031461021d5780630ae0b7421461023f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611b7f565b610519565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611d41565b6105b0565b60405190151581526020016101af565b3480156101f457600080fd5b50610208610203366004611d7b565b610602565b005b610208610218366004611ddd565b610643565b34801561022957600080fd5b5061023261083c565b6040516101af919061203b565b34801561024b57600080fd5b5061020861025a366004611df8565b6108ca565b34801561026b57600080fd5b5060075461027c9063ffffffff1681565b60405163ffffffff90911681526020016101af565b34801561029d57600080fd5b506102326102ac366004611dc4565b61091c565b3480156102bd57600080fd5b506102086102cc366004611a34565b610950565b3480156102dd57600080fd5b506102086109e7565b3480156102f257600080fd5b50610306610301366004611c70565b610a9c565b6040516101af9190612003565b34801561031f57600080fd5b5061020861032e366004611bec565b610bc6565b34801561033f57600080fd5b5061020861034e366004611ba9565b610cd9565b34801561035f57600080fd5b50610232610d60565b34801561037457600080fd5b50610208610d6d565b34801561038957600080fd5b506101a5610398366004611ddd565b60096020526000908152604090205481565b3480156103b657600080fd5b5061027c6103c5366004611ddd565b600a6020526000908152604090205463ffffffff1681565b3480156103e957600080fd5b506003546040516001600160a01b0390911681526020016101af565b34801561041157600080fd5b50610232610da3565b34801561042657600080fd5b50610208610435366004611b43565b610db0565b34801561044657600080fd5b506101a560085481565b34801561045c57600080fd5b5061020861046b366004611ddd565b610dbb565b34801561047c57600080fd5b506101d861048b366004611a01565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b506007544263ffffffff90911611156101d8565b3480156104e557600080fd5b506102086104f4366004611ade565b610e01565b34801561050557600080fd5b506102086105143660046119e6565b610e88565b60006001600160a01b03831661058a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105e157506001600160e01b031982166303a24d0760e21b145b806105fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b0316331461062c5760405162461bcd60e51b815260040161058190612125565b805161063f9060069060208401906117d5565b5050565b6007544263ffffffff90911611156106935760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610581565b60008163ffffffff16116106e95760405162461bcd60e51b815260206004820152601d60248201527f436f756e74206d7573742062652067726561746572207468616e20302e0000006044820152606401610581565b8063ffffffff166008546106fd91906121aa565b34101561070957600080fd5b60016000527fbbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc75460096020527f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a365463ffffffff9182169161076d919084169061217e565b11156107cd5760405162461bcd60e51b815260206004820152602960248201527f436f756e74206578636565647320746865206d6178696d756d20616c6c6f7765604482015268321039bab838363c9760b91b6064820152608401610581565b6001600090815260096020527f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a36805463ffffffff8416929061081090849061217e565b925050819055506108393360018363ffffffff1660405180602001604052806000815250610f20565b50565b6004805461084990612210565b80601f016020809104026020016040519081016040528092919081815260200182805461087590612210565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b505050505081565b6003546001600160a01b031633146108f45760405162461bcd60e51b815260040161058190612125565b63ffffffff9182166000908152600a60205260409020805463ffffffff191691909216179055565b606060066109298361102a565b60405160200161093a929190611ea5565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061096c575061096c853361048b565b6109d35760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610581565b6109e08585858585611130565b5050505050565b6003546001600160a01b03163314610a115760405162461bcd60e51b815260040161058190612125565b604051600090339047908381818185875af1925050503d8060008114610a53576040519150601f19603f3d011682016040523d82523d6000602084013e610a58565b606091505b50509050806108395760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610581565b60608151835114610b015760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610581565b6000835167ffffffffffffffff811115610b1d57610b1d61230d565b604051908082528060200260200182016040528015610b46578160200160208202803683370190505b50905060005b8451811015610bbe57610b91858281518110610b6a57610b6a6122f7565b6020026020010151858381518110610b8457610b846122f7565b6020026020010151610519565b828281518110610ba357610ba36122f7565b6020908102919091010152610bb781612278565b9050610b4c565b509392505050565b6003546001600160a01b03163314610bf05760405162461bcd60e51b815260040161058190612125565b60005b63ffffffff8116821115610cd15782828263ffffffff16818110610c1957610c196122f7565b90506020020135600960008663ffffffff1663ffffffff1681526020019081526020016000206000828254610c4e919061217e565b90915550610cbf9050868663ffffffff8416818110610c6f57610c6f6122f7565b9050602002016020810190610c8491906119e6565b8563ffffffff1685858563ffffffff16818110610ca357610ca36122f7565b9050602002013560405180602001604052806000815250610f20565b80610cc981612293565b915050610bf3565b505050505050565b6003546001600160a01b03163314610d035760405162461bcd60e51b815260040161058190612125565b63ffffffff8281166000908152600960205260408120805492841692909190610d2d90849061217e565b92505081905550610d5b838363ffffffff168363ffffffff1660405180602001604052806000815250610f20565b505050565b6006805461084990612210565b6003546001600160a01b03163314610d975760405162461bcd60e51b815260040161058190612125565b610da16000611305565b565b6005805461084990612210565b61063f338383611357565b6003546001600160a01b03163314610de55760405162461bcd60e51b815260040161058190612125565b6007805463ffffffff191663ffffffff92909216919091179055565b6001600160a01b038516331480610e1d5750610e1d853361048b565b610e7b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610581565b6109e08585858585611438565b6003546001600160a01b03163314610eb25760405162461bcd60e51b815260040161058190612125565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610581565b61083981611305565b6001600160a01b038416610f805760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610581565b33610f9a81600087610f9188611555565b6109e088611555565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610fca90849061217e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46109e0816000878787876115a0565b60608161104e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611078578061106281612278565b91506110719050600a83612196565b9150611052565b60008167ffffffffffffffff8111156110935761109361230d565b6040519080825280601f01601f1916602001820160405280156110bd576020820181803683370190505b5090505b8415611128576110d26001836121c9565b91506110df600a866122b7565b6110ea90603061217e565b60f81b8183815181106110ff576110ff6122f7565b60200101906001600160f81b031916908160001a905350611121600a86612196565b94506110c1565b949350505050565b81518351146111925760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610581565b6001600160a01b0384166111b85760405162461bcd60e51b815260040161058190612096565b3360005b845181101561129f5760008582815181106111d9576111d96122f7565b6020026020010151905060008583815181106111f7576111f76122f7565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112475760405162461bcd60e51b8152600401610581906120db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061128490849061217e565b925050819055505050508061129890612278565b90506111bc565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112ef929190612016565b60405180910390a4610cd181878787878761170b565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610581565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661145e5760405162461bcd60e51b815260040161058190612096565b3361146e818787610f9188611555565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114af5760405162461bcd60e51b8152600401610581906120db565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906114ec90849061217e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461154c8288888888886115a0565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061158f5761158f6122f7565b602090810291909101015292915050565b6001600160a01b0384163b15610cd15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115e49089908990889088908890600401611fbe565b602060405180830381600087803b1580156115fe57600080fd5b505af192505050801561162e575060408051601f3d908101601f1916820190925261162b91810190611d5e565b60015b6116db5761163a612323565b806308c379a01415611674575061164f61233f565b8061165a5750611676565b8060405162461bcd60e51b8152600401610581919061203b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610581565b6001600160e01b0319811663f23a6e6160e01b1461154c5760405162461bcd60e51b81526004016105819061204e565b6001600160a01b0384163b15610cd15760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061174f9089908990889088908890600401611f60565b602060405180830381600087803b15801561176957600080fd5b505af1925050508015611799575060408051601f3d908101601f1916820190925261179691810190611d5e565b60015b6117a55761163a612323565b6001600160e01b0319811663bc197c8160e01b1461154c5760405162461bcd60e51b81526004016105819061204e565b8280546117e190612210565b90600052602060002090601f0160209004810192826118035760008555611849565b82601f1061181c57805160ff1916838001178555611849565b82800160010185558215611849579182015b8281111561184957825182559160200191906001019061182e565b50611855929150611859565b5090565b5b80821115611855576000815560010161185a565b600067ffffffffffffffff8311156118885761188861230d565b60405161189f601f8501601f19166020018261224b565b8091508381528484840111156118b457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146118e357600080fd5b919050565b60008083601f8401126118fa57600080fd5b50813567ffffffffffffffff81111561191257600080fd5b6020830191508360208260051b850101111561192d57600080fd5b9250929050565b600082601f83011261194557600080fd5b813560206119528261215a565b60405161195f828261224b565b8381528281019150858301600585901b8701840188101561197f57600080fd5b60005b8581101561199e57813584529284019290840190600101611982565b5090979650505050505050565b600082601f8301126119bc57600080fd5b6119cb8383356020850161186e565b9392505050565b803563ffffffff811681146118e357600080fd5b6000602082840312156119f857600080fd5b6119cb826118cc565b60008060408385031215611a1457600080fd5b611a1d836118cc565b9150611a2b602084016118cc565b90509250929050565b600080600080600060a08688031215611a4c57600080fd5b611a55866118cc565b9450611a63602087016118cc565b9350604086013567ffffffffffffffff80821115611a8057600080fd5b611a8c89838a01611934565b94506060880135915080821115611aa257600080fd5b611aae89838a01611934565b93506080880135915080821115611ac457600080fd5b50611ad1888289016119ab565b9150509295509295909350565b600080600080600060a08688031215611af657600080fd5b611aff866118cc565b9450611b0d602087016118cc565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3757600080fd5b611ad1888289016119ab565b60008060408385031215611b5657600080fd5b611b5f836118cc565b915060208301358015158114611b7457600080fd5b809150509250929050565b60008060408385031215611b9257600080fd5b611b9b836118cc565b946020939093013593505050565b600080600060608486031215611bbe57600080fd5b611bc7846118cc565b9250611bd5602085016119d2565b9150611be3604085016119d2565b90509250925092565b600080600080600060608688031215611c0457600080fd5b853567ffffffffffffffff80821115611c1c57600080fd5b611c2889838a016118e8565b9097509550859150611c3c602089016119d2565b94506040880135915080821115611c5257600080fd5b50611c5f888289016118e8565b969995985093965092949392505050565b60008060408385031215611c8357600080fd5b823567ffffffffffffffff80821115611c9b57600080fd5b818501915085601f830112611caf57600080fd5b81356020611cbc8261215a565b604051611cc9828261224b565b8381528281019150858301600585901b870184018b1015611ce957600080fd5b600096505b84871015611d1357611cff816118cc565b835260019690960195918301918301611cee565b5096505086013592505080821115611d2a57600080fd5b50611d3785828601611934565b9150509250929050565b600060208284031215611d5357600080fd5b81356119cb816123c9565b600060208284031215611d7057600080fd5b81516119cb816123c9565b600060208284031215611d8d57600080fd5b813567ffffffffffffffff811115611da457600080fd5b8201601f81018413611db557600080fd5b6111288482356020840161186e565b600060208284031215611dd657600080fd5b5035919050565b600060208284031215611def57600080fd5b6119cb826119d2565b60008060408385031215611e0b57600080fd5b611e14836119d2565b9150611a2b602084016119d2565b600081518084526020808501945080840160005b83811015611e5257815187529582019590820190600101611e36565b509495945050505050565b60008151808452611e758160208601602086016121e0565b601f01601f19169290920160200192915050565b60008151611e9b8185602086016121e0565b9290920192915050565b600080845481600182811c915080831680611ec157607f831692505b6020808410821415611ee157634e487b7160e01b86526022600452602486fd5b818015611ef55760018114611f0657611f33565b60ff19861689528489019650611f33565b60008b81526020902060005b86811015611f2b5781548b820152908501908301611f12565b505084890196505b505050505050611f57611f468286611e89565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611f8c90830186611e22565b8281036060840152611f9e8186611e22565b90508281036080840152611fb28185611e5d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611ff890830184611e5d565b979650505050505050565b6020815260006119cb6020830184611e22565b6040815260006120296040830185611e22565b8281036020840152611f578185611e22565b6020815260006119cb6020830184611e5d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156121745761217461230d565b5060051b60200190565b60008219821115612191576121916122cb565b500190565b6000826121a5576121a56122e1565b500490565b60008160001904831182151516156121c4576121c46122cb565b500290565b6000828210156121db576121db6122cb565b500390565b60005b838110156121fb5781810151838201526020016121e3565b8381111561220a576000848401525b50505050565b600181811c9082168061222457607f821691505b6020821081141561224557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156122715761227161230d565b6040525050565b600060001982141561228c5761228c6122cb565b5060010190565b600063ffffffff808316818114156122ad576122ad6122cb565b6001019392505050565b6000826122c6576122c66122e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561233c5760046000803e5060005160e01c5b90565b600060443d101561234d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561237d57505050505090565b82850191508151818111156123955750505050505090565b843d87010160208285010111156123af5750505050505090565b6123be6020828601018761224b565b509095945050505050565b6001600160e01b03198116811461083957600080fdfea26469706673582212208afd06efb1270fd58c7f13471f8f57216387de600a70ff7412d2d132077d90cb64736f6c63430008070033697066733a2f2f516d547072625a784b5933724b6a5a4d7a6163574d4e67314532707146534c31396959484a3648475a363855724e2f
Deployed Bytecode
0x6080604052600436106101805760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610470578063eb8d2444146104b9578063f242432a146104d9578063f2fde38b146104f957600080fd5b8063a22cb4651461041a578063bf5f956a1461043a578063c373c0ef1461045057600080fd5b80636c0360eb14610353578063715018a6146103685780637288d3811461037d5780637b37ff95146103aa5780638da5cb5b146103dd57806395d89b411461040557600080fd5b80630b97bc861161013e5780633ccfd60b116101185780633ccfd60b146102d15780634e1273f4146102e65780634e9df54d146103135780636904efca1461033357600080fd5b80630b97bc861461025f5780630e89341c146102915780632eb2c2d6146102b157600080fd5b8062fdd58e1461018557806301ffc9a7146101b857806302fe5305146101e857806303ec76ad1461020a57806306fdde031461021d5780630ae0b7421461023f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611b7f565b610519565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d3366004611d41565b6105b0565b60405190151581526020016101af565b3480156101f457600080fd5b50610208610203366004611d7b565b610602565b005b610208610218366004611ddd565b610643565b34801561022957600080fd5b5061023261083c565b6040516101af919061203b565b34801561024b57600080fd5b5061020861025a366004611df8565b6108ca565b34801561026b57600080fd5b5060075461027c9063ffffffff1681565b60405163ffffffff90911681526020016101af565b34801561029d57600080fd5b506102326102ac366004611dc4565b61091c565b3480156102bd57600080fd5b506102086102cc366004611a34565b610950565b3480156102dd57600080fd5b506102086109e7565b3480156102f257600080fd5b50610306610301366004611c70565b610a9c565b6040516101af9190612003565b34801561031f57600080fd5b5061020861032e366004611bec565b610bc6565b34801561033f57600080fd5b5061020861034e366004611ba9565b610cd9565b34801561035f57600080fd5b50610232610d60565b34801561037457600080fd5b50610208610d6d565b34801561038957600080fd5b506101a5610398366004611ddd565b60096020526000908152604090205481565b3480156103b657600080fd5b5061027c6103c5366004611ddd565b600a6020526000908152604090205463ffffffff1681565b3480156103e957600080fd5b506003546040516001600160a01b0390911681526020016101af565b34801561041157600080fd5b50610232610da3565b34801561042657600080fd5b50610208610435366004611b43565b610db0565b34801561044657600080fd5b506101a560085481565b34801561045c57600080fd5b5061020861046b366004611ddd565b610dbb565b34801561047c57600080fd5b506101d861048b366004611a01565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b506007544263ffffffff90911611156101d8565b3480156104e557600080fd5b506102086104f4366004611ade565b610e01565b34801561050557600080fd5b506102086105143660046119e6565b610e88565b60006001600160a01b03831661058a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105e157506001600160e01b031982166303a24d0760e21b145b806105fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b0316331461062c5760405162461bcd60e51b815260040161058190612125565b805161063f9060069060208401906117d5565b5050565b6007544263ffffffff90911611156106935760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610581565b60008163ffffffff16116106e95760405162461bcd60e51b815260206004820152601d60248201527f436f756e74206d7573742062652067726561746572207468616e20302e0000006044820152606401610581565b8063ffffffff166008546106fd91906121aa565b34101561070957600080fd5b60016000527fbbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc75460096020527f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a365463ffffffff9182169161076d919084169061217e565b11156107cd5760405162461bcd60e51b815260206004820152602960248201527f436f756e74206578636565647320746865206d6178696d756d20616c6c6f7765604482015268321039bab838363c9760b91b6064820152608401610581565b6001600090815260096020527f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a36805463ffffffff8416929061081090849061217e565b925050819055506108393360018363ffffffff1660405180602001604052806000815250610f20565b50565b6004805461084990612210565b80601f016020809104026020016040519081016040528092919081815260200182805461087590612210565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b505050505081565b6003546001600160a01b031633146108f45760405162461bcd60e51b815260040161058190612125565b63ffffffff9182166000908152600a60205260409020805463ffffffff191691909216179055565b606060066109298361102a565b60405160200161093a929190611ea5565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061096c575061096c853361048b565b6109d35760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610581565b6109e08585858585611130565b5050505050565b6003546001600160a01b03163314610a115760405162461bcd60e51b815260040161058190612125565b604051600090339047908381818185875af1925050503d8060008114610a53576040519150601f19603f3d011682016040523d82523d6000602084013e610a58565b606091505b50509050806108395760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610581565b60608151835114610b015760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610581565b6000835167ffffffffffffffff811115610b1d57610b1d61230d565b604051908082528060200260200182016040528015610b46578160200160208202803683370190505b50905060005b8451811015610bbe57610b91858281518110610b6a57610b6a6122f7565b6020026020010151858381518110610b8457610b846122f7565b6020026020010151610519565b828281518110610ba357610ba36122f7565b6020908102919091010152610bb781612278565b9050610b4c565b509392505050565b6003546001600160a01b03163314610bf05760405162461bcd60e51b815260040161058190612125565b60005b63ffffffff8116821115610cd15782828263ffffffff16818110610c1957610c196122f7565b90506020020135600960008663ffffffff1663ffffffff1681526020019081526020016000206000828254610c4e919061217e565b90915550610cbf9050868663ffffffff8416818110610c6f57610c6f6122f7565b9050602002016020810190610c8491906119e6565b8563ffffffff1685858563ffffffff16818110610ca357610ca36122f7565b9050602002013560405180602001604052806000815250610f20565b80610cc981612293565b915050610bf3565b505050505050565b6003546001600160a01b03163314610d035760405162461bcd60e51b815260040161058190612125565b63ffffffff8281166000908152600960205260408120805492841692909190610d2d90849061217e565b92505081905550610d5b838363ffffffff168363ffffffff1660405180602001604052806000815250610f20565b505050565b6006805461084990612210565b6003546001600160a01b03163314610d975760405162461bcd60e51b815260040161058190612125565b610da16000611305565b565b6005805461084990612210565b61063f338383611357565b6003546001600160a01b03163314610de55760405162461bcd60e51b815260040161058190612125565b6007805463ffffffff191663ffffffff92909216919091179055565b6001600160a01b038516331480610e1d5750610e1d853361048b565b610e7b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610581565b6109e08585858585611438565b6003546001600160a01b03163314610eb25760405162461bcd60e51b815260040161058190612125565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610581565b61083981611305565b6001600160a01b038416610f805760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610581565b33610f9a81600087610f9188611555565b6109e088611555565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610fca90849061217e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46109e0816000878787876115a0565b60608161104e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611078578061106281612278565b91506110719050600a83612196565b9150611052565b60008167ffffffffffffffff8111156110935761109361230d565b6040519080825280601f01601f1916602001820160405280156110bd576020820181803683370190505b5090505b8415611128576110d26001836121c9565b91506110df600a866122b7565b6110ea90603061217e565b60f81b8183815181106110ff576110ff6122f7565b60200101906001600160f81b031916908160001a905350611121600a86612196565b94506110c1565b949350505050565b81518351146111925760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610581565b6001600160a01b0384166111b85760405162461bcd60e51b815260040161058190612096565b3360005b845181101561129f5760008582815181106111d9576111d96122f7565b6020026020010151905060008583815181106111f7576111f76122f7565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112475760405162461bcd60e51b8152600401610581906120db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061128490849061217e565b925050819055505050508061129890612278565b90506111bc565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112ef929190612016565b60405180910390a4610cd181878787878761170b565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610581565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661145e5760405162461bcd60e51b815260040161058190612096565b3361146e818787610f9188611555565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114af5760405162461bcd60e51b8152600401610581906120db565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906114ec90849061217e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461154c8288888888886115a0565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061158f5761158f6122f7565b602090810291909101015292915050565b6001600160a01b0384163b15610cd15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115e49089908990889088908890600401611fbe565b602060405180830381600087803b1580156115fe57600080fd5b505af192505050801561162e575060408051601f3d908101601f1916820190925261162b91810190611d5e565b60015b6116db5761163a612323565b806308c379a01415611674575061164f61233f565b8061165a5750611676565b8060405162461bcd60e51b8152600401610581919061203b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610581565b6001600160e01b0319811663f23a6e6160e01b1461154c5760405162461bcd60e51b81526004016105819061204e565b6001600160a01b0384163b15610cd15760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061174f9089908990889088908890600401611f60565b602060405180830381600087803b15801561176957600080fd5b505af1925050508015611799575060408051601f3d908101601f1916820190925261179691810190611d5e565b60015b6117a55761163a612323565b6001600160e01b0319811663bc197c8160e01b1461154c5760405162461bcd60e51b81526004016105819061204e565b8280546117e190612210565b90600052602060002090601f0160209004810192826118035760008555611849565b82601f1061181c57805160ff1916838001178555611849565b82800160010185558215611849579182015b8281111561184957825182559160200191906001019061182e565b50611855929150611859565b5090565b5b80821115611855576000815560010161185a565b600067ffffffffffffffff8311156118885761188861230d565b60405161189f601f8501601f19166020018261224b565b8091508381528484840111156118b457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146118e357600080fd5b919050565b60008083601f8401126118fa57600080fd5b50813567ffffffffffffffff81111561191257600080fd5b6020830191508360208260051b850101111561192d57600080fd5b9250929050565b600082601f83011261194557600080fd5b813560206119528261215a565b60405161195f828261224b565b8381528281019150858301600585901b8701840188101561197f57600080fd5b60005b8581101561199e57813584529284019290840190600101611982565b5090979650505050505050565b600082601f8301126119bc57600080fd5b6119cb8383356020850161186e565b9392505050565b803563ffffffff811681146118e357600080fd5b6000602082840312156119f857600080fd5b6119cb826118cc565b60008060408385031215611a1457600080fd5b611a1d836118cc565b9150611a2b602084016118cc565b90509250929050565b600080600080600060a08688031215611a4c57600080fd5b611a55866118cc565b9450611a63602087016118cc565b9350604086013567ffffffffffffffff80821115611a8057600080fd5b611a8c89838a01611934565b94506060880135915080821115611aa257600080fd5b611aae89838a01611934565b93506080880135915080821115611ac457600080fd5b50611ad1888289016119ab565b9150509295509295909350565b600080600080600060a08688031215611af657600080fd5b611aff866118cc565b9450611b0d602087016118cc565b93506040860135925060608601359150608086013567ffffffffffffffff811115611b3757600080fd5b611ad1888289016119ab565b60008060408385031215611b5657600080fd5b611b5f836118cc565b915060208301358015158114611b7457600080fd5b809150509250929050565b60008060408385031215611b9257600080fd5b611b9b836118cc565b946020939093013593505050565b600080600060608486031215611bbe57600080fd5b611bc7846118cc565b9250611bd5602085016119d2565b9150611be3604085016119d2565b90509250925092565b600080600080600060608688031215611c0457600080fd5b853567ffffffffffffffff80821115611c1c57600080fd5b611c2889838a016118e8565b9097509550859150611c3c602089016119d2565b94506040880135915080821115611c5257600080fd5b50611c5f888289016118e8565b969995985093965092949392505050565b60008060408385031215611c8357600080fd5b823567ffffffffffffffff80821115611c9b57600080fd5b818501915085601f830112611caf57600080fd5b81356020611cbc8261215a565b604051611cc9828261224b565b8381528281019150858301600585901b870184018b1015611ce957600080fd5b600096505b84871015611d1357611cff816118cc565b835260019690960195918301918301611cee565b5096505086013592505080821115611d2a57600080fd5b50611d3785828601611934565b9150509250929050565b600060208284031215611d5357600080fd5b81356119cb816123c9565b600060208284031215611d7057600080fd5b81516119cb816123c9565b600060208284031215611d8d57600080fd5b813567ffffffffffffffff811115611da457600080fd5b8201601f81018413611db557600080fd5b6111288482356020840161186e565b600060208284031215611dd657600080fd5b5035919050565b600060208284031215611def57600080fd5b6119cb826119d2565b60008060408385031215611e0b57600080fd5b611e14836119d2565b9150611a2b602084016119d2565b600081518084526020808501945080840160005b83811015611e5257815187529582019590820190600101611e36565b509495945050505050565b60008151808452611e758160208601602086016121e0565b601f01601f19169290920160200192915050565b60008151611e9b8185602086016121e0565b9290920192915050565b600080845481600182811c915080831680611ec157607f831692505b6020808410821415611ee157634e487b7160e01b86526022600452602486fd5b818015611ef55760018114611f0657611f33565b60ff19861689528489019650611f33565b60008b81526020902060005b86811015611f2b5781548b820152908501908301611f12565b505084890196505b505050505050611f57611f468286611e89565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611f8c90830186611e22565b8281036060840152611f9e8186611e22565b90508281036080840152611fb28185611e5d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611ff890830184611e5d565b979650505050505050565b6020815260006119cb6020830184611e22565b6040815260006120296040830185611e22565b8281036020840152611f578185611e22565b6020815260006119cb6020830184611e5d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156121745761217461230d565b5060051b60200190565b60008219821115612191576121916122cb565b500190565b6000826121a5576121a56122e1565b500490565b60008160001904831182151516156121c4576121c46122cb565b500290565b6000828210156121db576121db6122cb565b500390565b60005b838110156121fb5781810151838201526020016121e3565b8381111561220a576000848401525b50505050565b600181811c9082168061222457607f821691505b6020821081141561224557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156122715761227161230d565b6040525050565b600060001982141561228c5761228c6122cb565b5060010190565b600063ffffffff808316818114156122ad576122ad6122cb565b6001019392505050565b6000826122c6576122c66122e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561233c5760046000803e5060005160e01c5b90565b600060443d101561234d5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561237d57505050505090565b82850191508151818111156123955750505050505090565b843d87010160208285010111156123af5750505050505090565b6123be6020828601018761224b565b509095945050505050565b6001600160e01b03198116811461083957600080fdfea26469706673582212208afd06efb1270fd58c7f13471f8f57216387de600a70ff7412d2d132077d90cb64736f6c63430008070033
Deployed Bytecode Sourcemap
39096:2492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25501:231;;;;;;;;;;-1:-1:-1;25501:231:0;;;;;:::i;:::-;;:::i;:::-;;;20975:25:1;;;20963:2;20948:18;25501:231:0;;;;;;;;24524:310;;;;;;;;;;-1:-1:-1;24524:310:0;;;;;:::i;:::-;;:::i;:::-;;;13830:14:1;;13823:22;13805:41;;13793:2;13778:18;24524:310:0;13665:187:1;39739:88:0;;;;;;;;;;-1:-1:-1;39739:88:0;;;;;:::i;:::-;;:::i;:::-;;40055:505;;;;;;:::i;:::-;;:::i;39185:49::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41118:113::-;;;;;;;;;;-1:-1:-1;41118:113:0;;;;;:::i;:::-;;:::i;39366:36::-;;;;;;;;;;-1:-1:-1;39366:36:0;;;;;;;;;;;21438:10:1;21426:23;;;21408:42;;21396:2;21381:18;39366:36:0;21264:192:1;41239:165:0;;;;;;;;;;-1:-1:-1;41239:165:0;;;;;:::i;:::-;;:::i;27440:442::-;;;;;;;;;;-1:-1:-1;27440:442:0;;;;;:::i;:::-;;:::i;41412:173::-;;;;;;;;;;;;;:::i;25898:524::-;;;;;;;;;;-1:-1:-1;25898:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40783:327::-;;;;;;;;;;-1:-1:-1;40783:327:0;;;;;:::i;:::-;;:::i;40568:207::-;;;;;;;;;;-1:-1:-1;40568:207:0;;;;;:::i;:::-;;:::i;39277:80::-;;;;;;;;;;;;;:::i;4730:103::-;;;;;;;;;;;;;:::i;39497:45::-;;;;;;;;;;-1:-1:-1;39497:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;39549:42;;;;;;;;;;-1:-1:-1;39549:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;4079:87;;-1:-1:-1;;;;;4152:6:0;;;11471:51:1;;11459:2;11444:18;4079:87:0;11325:203:1;39241:29:0;;;;;;;;;;;;;:::i;26495:155::-;;;;;;;;;;-1:-1:-1;26495:155:0;;;;;:::i;:::-;;:::i;39443:45::-;;;;;;;;;;;;;;;;39835:99;;;;;;;;;;-1:-1:-1;39835:99:0;;;;;:::i;:::-;;:::i;26722:168::-;;;;;;;;;;-1:-1:-1;26722:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;26845:27:0;;;26821:4;26845:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;26722:168;39942:105;;;;;;;;;;-1:-1:-1;40011:9:0;;40024:15;40011:9;;;;:28;;39942:105;;26962:401;;;;;;;;;;-1:-1:-1;26962:401:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;25501:231::-;25587:7;-1:-1:-1;;;;;25615:21:0;;25607:77;;;;-1:-1:-1;;;25607:77:0;;15113:2:1;25607:77:0;;;15095:21:1;15152:2;15132:18;;;15125:30;15191:34;15171:18;;;15164:62;-1:-1:-1;;;15242:18:1;;;15235:41;15293:19;;25607:77:0;;;;;;;;;-1:-1:-1;25702:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;25702:22:0;;;;;;;;;;;;25501:231::o;24524:310::-;24626:4;-1:-1:-1;;;;;;24663:41:0;;-1:-1:-1;;;24663:41:0;;:110;;-1:-1:-1;;;;;;;24721:52:0;;-1:-1:-1;;;24721:52:0;24663:110;:163;;;-1:-1:-1;;;;;;;;;;15941:40:0;;;24790:36;24643:183;24524:310;-1:-1:-1;;24524:310:0:o;39739:88::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;39805:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39739:88:::0;:::o;40055:505::-;40011:9;;40024:15;40011:9;;;;:28;;40155:46;;;;-1:-1:-1;;;40155:46:0;;18707:2:1;40155:46:0;;;18689:21:1;18746:2;18726:18;;;18719:30;-1:-1:-1;;;18765:18:1;;;18758:49;18824:18;;40155:46:0;18505:343:1;40155:46:0;40231:1;40220:8;:12;;;40212:54;;;;-1:-1:-1;;;40212:54:0;;16342:2:1;40212:54:0;;;16324:21:1;16381:2;16361:18;;;16354:30;16420:31;16400:18;;;16393:59;16469:18;;40212:54:0;16140:353:1;40212:54:0;40318:8;40298:28;;:17;;:28;;;;:::i;:::-;40285:9;:41;;40277:50;;;;;;40399:1;40389:12;;;;40360:11;40389:12;40360:14;;;40389:12;;;;;40360:25;;;;;;;:::i;:::-;:41;;40338:132;;;;-1:-1:-1;;;40338:132:0;;17936:2:1;40338:132:0;;;17918:21:1;17975:2;17955:18;;;17948:30;18014:34;17994:18;;;17987:62;-1:-1:-1;;;18065:18:1;;;18058:39;18114:19;;40338:132:0;17734:405:1;40338:132:0;40493:1;40481:14;;;;:11;:14;;;:26;;;;;;:14;:26;;;;;:::i;:::-;;;;;;;;40518:34;40524:10;40536:1;40539:8;40518:34;;;;;;;;;;;;;;:5;:34::i;:::-;40055:505;:::o;39185:49::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41118:113::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41196:14:::1;::::0;;::::1;;::::0;;;:9:::1;:14;::::0;;;;:27;;-1:-1:-1;;41196:27:0::1;::::0;;;::::1;;::::0;;41118:113::o;41239:165::-;41300:13;41357:7;41366:19;:8;:17;:19::i;:::-;41340:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41326:70;;41239:165;;;:::o;27440:442::-;-1:-1:-1;;;;;27673:20:0;;2883:10;27673:20;;:60;;-1:-1:-1;27697:36:0;27714:4;2883:10;26722:168;:::i;27697:36::-;27651:160;;;;-1:-1:-1;;;27651:160:0;;17106:2:1;27651:160:0;;;17088:21:1;17145:2;17125:18;;;17118:30;17184:34;17164:18;;;17157:62;-1:-1:-1;;;17235:18:1;;;17228:48;17293:19;;27651:160:0;16904:414:1;27651:160:0;27822:52;27845:4;27851:2;27855:3;27860:7;27869:4;27822:22;:52::i;:::-;27440:442;;;;;:::o;41412:173::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41481:49:::1;::::0;41463:12:::1;::::0;41481:10:::1;::::0;41504:21:::1;::::0;41463:12;41481:49;41463:12;41481:49;41504:21;41481:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41462:68;;;41549:7;41541:36;;;::::0;-1:-1:-1;;;41541:36:0;;19055:2:1;41541:36:0::1;::::0;::::1;19037:21:1::0;19094:2;19074:18;;;19067:30;-1:-1:-1;;;19113:18:1;;;19106:46;19169:18;;41541:36:0::1;18853:340:1::0;25898:524:0;26054:16;26115:3;:10;26096:8;:15;:29;26088:83;;;;-1:-1:-1;;;26088:83:0;;19810:2:1;26088:83:0;;;19792:21:1;19849:2;19829:18;;;19822:30;19888:34;19868:18;;;19861:62;-1:-1:-1;;;19939:18:1;;;19932:39;19988:19;;26088:83:0;19608:405:1;26088:83:0;26184:30;26231:8;:15;26217:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26217:30:0;;26184:63;;26265:9;26260:122;26284:8;:15;26280:1;:19;26260:122;;;26340:30;26350:8;26359:1;26350:11;;;;;;;;:::i;:::-;;;;;;;26363:3;26367:1;26363:6;;;;;;;;:::i;:::-;;;;;;;26340:9;:30::i;:::-;26321:13;26335:1;26321:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;26301:3;;;:::i;:::-;;;26260:122;;;-1:-1:-1;26401:13:0;25898:524;-1:-1:-1;;;25898:524:0:o;40783:327::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;40945:8:::1;40964:139;40974:17;::::0;::::1;::::0;-1:-1:-1;40964:139:0::1;;;41032:8;;41041:1;41032:11;;;;;;;;;:::i;:::-;;;;;;;41013;:15;41025:2;41013:15;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;41058:33:0::1;::::0;-1:-1:-1;41064:2:0;;:5:::1;::::0;::::1;::::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;41071:2;41058:33;;41075:8;;41084:1;41075:11;;;;;;;;;:::i;:::-;;;;;;;41058:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;40993:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40964:139;;;40934:176;40783:327:::0;;;;;:::o;40568:207::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;40702:27:::1;:15:::0;;::::1;;::::0;;;:11:::1;:15;::::0;;;;:27;;;;::::1;::::0;:15;;;:27:::1;::::0;;;::::1;:::i;:::-;;;;;;;;40740;40746:2;40750;40740:27;;40754:8;40740:27;;;;;;;;;;;;;::::0;:5:::1;:27::i;:::-;40568:207:::0;;;:::o;39277:80::-;;;;;;;:::i;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;39241:29::-;;;;;;;:::i;26495:155::-;26590:52;2883:10;26623:8;26633;26590:18;:52::i;39835:99::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;39905:9:::1;:21:::0;;-1:-1:-1;;39905:21:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;39835:99::o;26962:401::-;-1:-1:-1;;;;;27170:20:0;;2883:10;27170:20;;:60;;-1:-1:-1;27194:36:0;27211:4;2883:10;26722:168;:::i;27194:36::-;27148:151;;;;-1:-1:-1;;;27148:151:0;;15932:2:1;27148:151:0;;;15914:21:1;15971:2;15951:18;;;15944:30;16010:34;15990:18;;;15983:62;-1:-1:-1;;;16061:18:1;;;16054:39;16110:19;;27148:151:0;15730:405:1;27148:151:0;27310:45;27328:4;27334:2;27338;27342:6;27350:4;27310:17;:45::i;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;15525:2:1;5069:73:0::1;::::0;::::1;15507:21:1::0;15564:2;15544:18;;;15537:30;15603:34;15583:18;;;15576:62;-1:-1:-1;;;15654:18:1;;;15647:36;15700:19;;5069:73:0::1;15323:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;31916:569::-:0;-1:-1:-1;;;;;32069:16:0;;32061:62;;;;-1:-1:-1;;;32061:62:0;;20629:2:1;32061:62:0;;;20611:21:1;20668:2;20648:18;;;20641:30;20707:34;20687:18;;;20680:62;-1:-1:-1;;;20758:18:1;;;20751:31;20799:19;;32061:62:0;20427:397:1;32061:62:0;2883:10;32180:102;2883:10;32136:16;32223:2;32227:21;32245:2;32227:17;:21::i;:::-;32250:25;32268:6;32250:17;:25::i;32180:102::-;32295:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32295:17:0;;;;;;;;;:27;;32316:6;;32295:9;:27;;32316:6;;32295:27;:::i;:::-;;;;-1:-1:-1;;32338:52:0;;;21185:25:1;;;21241:2;21226:18;;21219:34;;;-1:-1:-1;;;;;32338:52:0;;;;32371:1;;32338:52;;;;;;21158:18:1;32338:52:0;;;;;;;32403:74;32434:8;32452:1;32456:2;32460;32464:6;32472:4;32403:30;:74::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;;1073:6;365:723;-1:-1:-1;;;;365:723:0:o;29524:1074::-;29751:7;:14;29737:3;:10;:28;29729:81;;;;-1:-1:-1;;;29729:81:0;;20220:2:1;29729:81:0;;;20202:21:1;20259:2;20239:18;;;20232:30;20298:34;20278:18;;;20271:62;-1:-1:-1;;;20349:18:1;;;20342:38;20397:19;;29729:81:0;20018:404:1;29729:81:0;-1:-1:-1;;;;;29829:16:0;;29821:66;;;;-1:-1:-1;;;29821:66:0;;;;;;;:::i;:::-;2883:10;29900:16;30017:421;30041:3;:10;30037:1;:14;30017:421;;;30073:10;30086:3;30090:1;30086:6;;;;;;;;:::i;:::-;;;;;;;30073:19;;30107:14;30124:7;30132:1;30124:10;;;;;;;;:::i;:::-;;;;;;;;;;;;30151:19;30173:13;;;;;;;;;;-1:-1:-1;;;;;30173:19:0;;;;;;;;;;;;30124:10;;-1:-1:-1;30215:21:0;;;;30207:76;;;;-1:-1:-1;;;30207:76:0;;;;;;;:::i;:::-;30327:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30327:19:0;;;;;;;;;;30349:20;;;30327:42;;30399:17;;;;;;;:27;;30349:20;;30327:9;30399:27;;30349:20;;30399:27;:::i;:::-;;;;;;;;30058:380;;;30053:3;;;;:::i;:::-;;;30017:421;;;;30485:2;-1:-1:-1;;;;;30455:47:0;30479:4;-1:-1:-1;;;;;30455:47:0;30469:8;-1:-1:-1;;;;;30455:47:0;;30489:3;30494:7;30455:47;;;;;;;:::i;:::-;;;;;;;;30515:75;30551:8;30561:4;30567:2;30571:3;30576:7;30585:4;30515:35;:75::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;35710:331::-;35865:8;-1:-1:-1;;;;;35856:17:0;:5;-1:-1:-1;;;;;35856:17:0;;;35848:71;;;;-1:-1:-1;;;35848:71:0;;19400:2:1;35848:71:0;;;19382:21:1;19439:2;19419:18;;;19412:30;19478:34;19458:18;;;19451:62;-1:-1:-1;;;19529:18:1;;;19522:39;19578:19;;35848:71:0;19198:405:1;35848:71:0;-1:-1:-1;;;;;35930:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35930:46:0;;;;;;;;;;35992:41;;13805::1;;;35992::0;;13778:18:1;35992:41:0;;;;;;;35710:331;;;:::o;28346:820::-;-1:-1:-1;;;;;28534:16:0;;28526:66;;;;-1:-1:-1;;;28526:66:0;;;;;;;:::i;:::-;2883:10;28649:96;2883:10;28680:4;28686:2;28690:21;28708:2;28690:17;:21::i;28649:96::-;28758:19;28780:13;;;;;;;;;;;-1:-1:-1;;;;;28780:19:0;;;;;;;;;;28818:21;;;;28810:76;;;;-1:-1:-1;;;28810:76:0;;;;;;;:::i;:::-;28922:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28922:19:0;;;;;;;;;;28944:20;;;28922:42;;28986:17;;;;;;;:27;;28944:20;;28922:9;28986:27;;28944:20;;28986:27;:::i;:::-;;;;-1:-1:-1;;29031:46:0;;;21185:25:1;;;21241:2;21226:18;;21219:34;;;-1:-1:-1;;;;;29031:46:0;;;;;;;;;;;;;;21158:18:1;29031:46:0;;;;;;;29090:68;29121:8;29131:4;29137:2;29141;29145:6;29153:4;29090:30;:68::i;:::-;28515:651;;28346:820;;;;;:::o;38799:198::-;38919:16;;;38933:1;38919:16;;;;;;;;;38865;;38894:22;;38919:16;;;;;;;;;;;;-1:-1:-1;38919:16:0;38894:41;;38957:7;38946:5;38952:1;38946:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38984:5;38799:198;-1:-1:-1;;38799:198:0:o;37226:744::-;-1:-1:-1;;;;;37441:13:0;;7075:19;:23;37437:526;;37477:72;;-1:-1:-1;;;37477:72:0;;-1:-1:-1;;;;;37477:38:0;;;;;:72;;37516:8;;37526:4;;37532:2;;37536:6;;37544:4;;37477:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37477:72:0;;;;;;;;-1:-1:-1;;37477:72:0;;;;;;;;;;;;:::i;:::-;;;37473:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;37825:6;37818:14;;-1:-1:-1;;;37818:14:0;;;;;;;;:::i;37473:479::-;;;37874:62;;-1:-1:-1;;;37874:62:0;;14283:2:1;37874:62:0;;;14265:21:1;14322:2;14302:18;;;14295:30;14361:34;14341:18;;;14334:62;-1:-1:-1;;;14412:18:1;;;14405:50;14472:19;;37874:62:0;14081:416:1;37473:479:0;-1:-1:-1;;;;;;37599:55:0;;-1:-1:-1;;;37599:55:0;37595:154;;37679:50;;-1:-1:-1;;;37679:50:0;;;;;;;:::i;37978:813::-;-1:-1:-1;;;;;38218:13:0;;7075:19;:23;38214:570;;38254:79;;-1:-1:-1;;;38254:79:0;;-1:-1:-1;;;;;38254:43:0;;;;;:79;;38298:8;;38308:4;;38314:3;;38319:7;;38328:4;;38254:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38254:79:0;;;;;;;;-1:-1:-1;;38254:79:0;;;;;;;;;;;;:::i;:::-;;;38250:523;;;;:::i;:::-;-1:-1:-1;;;;;;38415:60:0;;-1:-1:-1;;;38415:60:0;38411:159;;38500:50;;-1:-1:-1;;;38500:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;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:367::-;728:8;738:6;792:3;785:4;777:6;773:17;769:27;759:55;;810:1;807;800:12;759:55;-1:-1:-1;833:20:1;;876:18;865:30;;862:50;;;908:1;905;898:12;862:50;945:4;937:6;933:17;921:29;;1005:3;998:4;988:6;985:1;981:14;973:6;969:27;965:38;962:47;959:67;;;1022:1;1019;1012:12;959:67;665:367;;;;;:::o;1037:735::-;1091:5;1144:3;1137:4;1129:6;1125:17;1121:27;1111:55;;1162:1;1159;1152:12;1111:55;1198:6;1185:20;1224:4;1247:43;1287:2;1247:43;:::i;:::-;1319:2;1313:9;1331:31;1359:2;1351:6;1331:31;:::i;:::-;1397:18;;;1431:15;;;;-1:-1:-1;1466:15:1;;;1516:1;1512:10;;;1500:23;;1496:32;;1493:41;-1:-1:-1;1490:61:1;;;1547:1;1544;1537:12;1490:61;1569:1;1579:163;1593:2;1590:1;1587:9;1579:163;;;1650:17;;1638:30;;1688:12;;;;1720;;;;1611:1;1604:9;1579:163;;;-1:-1:-1;1760:6:1;;1037:735;-1:-1:-1;;;;;;;1037:735:1:o;1777:220::-;1819:5;1872:3;1865:4;1857:6;1853:17;1849:27;1839:55;;1890:1;1887;1880:12;1839:55;1912:79;1987:3;1978:6;1965:20;1958:4;1950:6;1946:17;1912:79;:::i;:::-;1903:88;1777:220;-1:-1:-1;;;1777:220:1:o;2002:163::-;2069:20;;2129:10;2118:22;;2108:33;;2098:61;;2155:1;2152;2145:12;2170:186;2229:6;2282:2;2270:9;2261:7;2257:23;2253:32;2250:52;;;2298:1;2295;2288:12;2250:52;2321:29;2340:9;2321:29;:::i;2361:260::-;2429:6;2437;2490:2;2478:9;2469:7;2465:23;2461:32;2458:52;;;2506:1;2503;2496:12;2458:52;2529:29;2548:9;2529:29;:::i;:::-;2519:39;;2577:38;2611:2;2600:9;2596:18;2577:38;:::i;:::-;2567:48;;2361:260;;;;;:::o;2626:943::-;2780:6;2788;2796;2804;2812;2865:3;2853:9;2844:7;2840:23;2836:33;2833:53;;;2882:1;2879;2872:12;2833:53;2905:29;2924:9;2905:29;:::i;:::-;2895:39;;2953:38;2987:2;2976:9;2972:18;2953:38;:::i;:::-;2943:48;;3042:2;3031:9;3027:18;3014:32;3065:18;3106:2;3098:6;3095:14;3092:34;;;3122:1;3119;3112:12;3092:34;3145:61;3198:7;3189:6;3178:9;3174:22;3145:61;:::i;:::-;3135:71;;3259:2;3248:9;3244:18;3231:32;3215:48;;3288:2;3278:8;3275:16;3272:36;;;3304:1;3301;3294:12;3272:36;3327:63;3382:7;3371:8;3360:9;3356:24;3327:63;:::i;:::-;3317:73;;3443:3;3432:9;3428:19;3415:33;3399:49;;3473:2;3463:8;3460:16;3457:36;;;3489:1;3486;3479:12;3457:36;;3512:51;3555:7;3544:8;3533:9;3529:24;3512:51;:::i;:::-;3502:61;;;2626:943;;;;;;;;:::o;3574:606::-;3678:6;3686;3694;3702;3710;3763:3;3751:9;3742:7;3738:23;3734:33;3731:53;;;3780:1;3777;3770:12;3731:53;3803:29;3822:9;3803:29;:::i;:::-;3793:39;;3851:38;3885:2;3874:9;3870:18;3851:38;:::i;:::-;3841:48;;3936:2;3925:9;3921:18;3908:32;3898:42;;3987:2;3976:9;3972:18;3959:32;3949:42;;4042:3;4031:9;4027:19;4014:33;4070:18;4062:6;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:49;4166:7;4157:6;4146:9;4142:22;4125:49;:::i;4185:347::-;4250:6;4258;4311:2;4299:9;4290:7;4286:23;4282:32;4279:52;;;4327:1;4324;4317:12;4279:52;4350:29;4369:9;4350:29;:::i;:::-;4340:39;;4429:2;4418:9;4414:18;4401:32;4476:5;4469:13;4462:21;4455:5;4452:32;4442:60;;4498:1;4495;4488:12;4442:60;4521:5;4511:15;;;4185:347;;;;;:::o;4537:254::-;4605:6;4613;4666:2;4654:9;4645:7;4641:23;4637:32;4634:52;;;4682:1;4679;4672:12;4634:52;4705:29;4724:9;4705:29;:::i;:::-;4695:39;4781:2;4766:18;;;;4753:32;;-1:-1:-1;;;4537:254:1:o;4796:330::-;4871:6;4879;4887;4940:2;4928:9;4919:7;4915:23;4911:32;4908:52;;;4956:1;4953;4946:12;4908:52;4979:29;4998:9;4979:29;:::i;:::-;4969:39;;5027:37;5060:2;5049:9;5045:18;5027:37;:::i;:::-;5017:47;;5083:37;5116:2;5105:9;5101:18;5083:37;:::i;:::-;5073:47;;4796:330;;;;;:::o;5131:845::-;5261:6;5269;5277;5285;5293;5346:2;5334:9;5325:7;5321:23;5317:32;5314:52;;;5362:1;5359;5352:12;5314:52;5402:9;5389:23;5431:18;5472:2;5464:6;5461:14;5458:34;;;5488:1;5485;5478:12;5458:34;5527:70;5589:7;5580:6;5569:9;5565:22;5527:70;:::i;:::-;5616:8;;-1:-1:-1;5501:96:1;-1:-1:-1;5501:96:1;;-1:-1:-1;5670:37:1;5703:2;5688:18;;5670:37;:::i;:::-;5660:47;;5760:2;5749:9;5745:18;5732:32;5716:48;;5789:2;5779:8;5776:16;5773:36;;;5805:1;5802;5795:12;5773:36;;5844:72;5908:7;5897:8;5886:9;5882:24;5844:72;:::i;:::-;5131:845;;;;-1:-1:-1;5131:845:1;;-1:-1:-1;5935:8:1;;5818:98;5131:845;-1:-1:-1;;;5131:845:1:o;5981:1219::-;6099:6;6107;6160:2;6148:9;6139:7;6135:23;6131:32;6128:52;;;6176:1;6173;6166:12;6128:52;6216:9;6203:23;6245:18;6286:2;6278:6;6275:14;6272:34;;;6302:1;6299;6292:12;6272:34;6340:6;6329:9;6325:22;6315:32;;6385:7;6378:4;6374:2;6370:13;6366:27;6356:55;;6407:1;6404;6397:12;6356:55;6443:2;6430:16;6465:4;6488:43;6528:2;6488:43;:::i;:::-;6560:2;6554:9;6572:31;6600:2;6592:6;6572:31;:::i;:::-;6638:18;;;6672:15;;;;-1:-1:-1;6707:11:1;;;6749:1;6745:10;;;6737:19;;6733:28;;6730:41;-1:-1:-1;6727:61:1;;;6784:1;6781;6774:12;6727:61;6806:1;6797:10;;6816:169;6830:2;6827:1;6824:9;6816:169;;;6887:23;6906:3;6887:23;:::i;:::-;6875:36;;6848:1;6841:9;;;;;6931:12;;;;6963;;6816:169;;;-1:-1:-1;7004:6:1;-1:-1:-1;;7048:18:1;;7035:32;;-1:-1:-1;;7079:16:1;;;7076:36;;;7108:1;7105;7098:12;7076:36;;7131:63;7186:7;7175:8;7164:9;7160:24;7131:63;:::i;:::-;7121:73;;;5981:1219;;;;;:::o;7205:245::-;7263:6;7316:2;7304:9;7295:7;7291:23;7287:32;7284:52;;;7332:1;7329;7322:12;7284:52;7371:9;7358:23;7390:30;7414:5;7390:30;:::i;7455:249::-;7524:6;7577:2;7565:9;7556:7;7552:23;7548:32;7545:52;;;7593:1;7590;7583:12;7545:52;7625:9;7619:16;7644:30;7668:5;7644:30;:::i;7709:450::-;7778:6;7831:2;7819:9;7810:7;7806:23;7802:32;7799:52;;;7847:1;7844;7837:12;7799:52;7887:9;7874:23;7920:18;7912:6;7909:30;7906:50;;;7952:1;7949;7942:12;7906:50;7975:22;;8028:4;8020:13;;8016:27;-1:-1:-1;8006:55:1;;8057:1;8054;8047:12;8006:55;8080:73;8145:7;8140:2;8127:16;8122:2;8118;8114:11;8080:73;:::i;8164:180::-;8223:6;8276:2;8264:9;8255:7;8251:23;8247:32;8244:52;;;8292:1;8289;8282:12;8244:52;-1:-1:-1;8315:23:1;;8164:180;-1:-1:-1;8164:180:1:o;8349:184::-;8407:6;8460:2;8448:9;8439:7;8435:23;8431:32;8428:52;;;8476:1;8473;8466:12;8428:52;8499:28;8517:9;8499:28;:::i;8538:256::-;8604:6;8612;8665:2;8653:9;8644:7;8640:23;8636:32;8633:52;;;8681:1;8678;8671:12;8633:52;8704:28;8722:9;8704:28;:::i;:::-;8694:38;;8751:37;8784:2;8773:9;8769:18;8751:37;:::i;8799:435::-;8852:3;8890:5;8884:12;8917:6;8912:3;8905:19;8943:4;8972:2;8967:3;8963:12;8956:19;;9009:2;9002:5;8998:14;9030:1;9040:169;9054:6;9051:1;9048:13;9040:169;;;9115:13;;9103:26;;9149:12;;;;9184:15;;;;9076:1;9069:9;9040:169;;;-1:-1:-1;9225:3:1;;8799:435;-1:-1:-1;;;;;8799:435:1:o;9239:257::-;9280:3;9318:5;9312:12;9345:6;9340:3;9333:19;9361:63;9417:6;9410:4;9405:3;9401:14;9394:4;9387:5;9383:16;9361:63;:::i;:::-;9478:2;9457:15;-1:-1:-1;;9453:29:1;9444:39;;;;9485:4;9440:50;;9239:257;-1:-1:-1;;9239:257:1:o;9501:185::-;9543:3;9581:5;9575:12;9596:52;9641:6;9636:3;9629:4;9622:5;9618:16;9596:52;:::i;:::-;9664:16;;;;;9501:185;-1:-1:-1;;9501:185:1:o;9809:1301::-;10086:3;10115:1;10148:6;10142:13;10178:3;10200:1;10228:9;10224:2;10220:18;10210:28;;10288:2;10277:9;10273:18;10310;10300:61;;10354:4;10346:6;10342:17;10332:27;;10300:61;10380:2;10428;10420:6;10417:14;10397:18;10394:38;10391:165;;;-1:-1:-1;;;10455:33:1;;10511:4;10508:1;10501:15;10541:4;10462:3;10529:17;10391:165;10572:18;10599:104;;;;10717:1;10712:320;;;;10565:467;;10599:104;-1:-1:-1;;10632:24:1;;10620:37;;10677:16;;;;-1:-1:-1;10599:104:1;;10712:320;21722:1;21715:14;;;21759:4;21746:18;;10807:1;10821:165;10835:6;10832:1;10829:13;10821:165;;;10913:14;;10900:11;;;10893:35;10956:16;;;;10850:10;;10821:165;;;10825:3;;11015:6;11010:3;11006:16;10999:23;;10565:467;;;;;;;11048:56;11073:30;11099:3;11091:6;11073:30;:::i;:::-;-1:-1:-1;;;9751:20:1;;9796:1;9787:11;;9691:113;11048:56;11041:63;9809:1301;-1:-1:-1;;;;;9809:1301:1:o;11533:826::-;-1:-1:-1;;;;;11930:15:1;;;11912:34;;11982:15;;11977:2;11962:18;;11955:43;11892:3;12029:2;12014:18;;12007:31;;;11855:4;;12061:57;;12098:19;;12090:6;12061:57;:::i;:::-;12166:9;12158:6;12154:22;12149:2;12138:9;12134:18;12127:50;12200:44;12237:6;12229;12200:44;:::i;:::-;12186:58;;12293:9;12285:6;12281:22;12275:3;12264:9;12260:19;12253:51;12321:32;12346:6;12338;12321:32;:::i;:::-;12313:40;11533:826;-1:-1:-1;;;;;;;;11533:826:1:o;12364:560::-;-1:-1:-1;;;;;12661:15:1;;;12643:34;;12713:15;;12708:2;12693:18;;12686:43;12760:2;12745:18;;12738:34;;;12803:2;12788:18;;12781:34;;;12623:3;12846;12831:19;;12824:32;;;12586:4;;12873:45;;12898:19;;12890:6;12873:45;:::i;:::-;12865:53;12364:560;-1:-1:-1;;;;;;;12364:560:1:o;12929:261::-;13108:2;13097:9;13090:21;13071:4;13128:56;13180:2;13169:9;13165:18;13157:6;13128:56;:::i;13195:465::-;13452:2;13441:9;13434:21;13415:4;13478:56;13530:2;13519:9;13515:18;13507:6;13478:56;:::i;:::-;13582:9;13574:6;13570:22;13565:2;13554:9;13550:18;13543:50;13610:44;13647:6;13639;13610:44;:::i;13857:219::-;14006:2;13995:9;13988:21;13969:4;14026:44;14066:2;14055:9;14051:18;14043:6;14026:44;:::i;14502:404::-;14704:2;14686:21;;;14743:2;14723:18;;;14716:30;14782:34;14777:2;14762:18;;14755:62;-1:-1:-1;;;14848:2:1;14833:18;;14826:38;14896:3;14881:19;;14502:404::o;16498:401::-;16700:2;16682:21;;;16739:2;16719:18;;;16712:30;16778:34;16773:2;16758:18;;16751:62;-1:-1:-1;;;16844:2:1;16829:18;;16822:35;16889:3;16874:19;;16498:401::o;17323:406::-;17525:2;17507:21;;;17564:2;17544:18;;;17537:30;17603:34;17598:2;17583:18;;17576:62;-1:-1:-1;;;17669:2:1;17654:18;;17647:40;17719:3;17704:19;;17323:406::o;18144:356::-;18346:2;18328:21;;;18365:18;;;18358:30;18424:34;18419:2;18404:18;;18397:62;18491:2;18476:18;;18144:356::o;21461:183::-;21521:4;21554:18;21546:6;21543:30;21540:56;;;21576:18;;:::i;:::-;-1:-1:-1;21621:1:1;21617:14;21633:4;21613:25;;21461:183::o;21775:128::-;21815:3;21846:1;21842:6;21839:1;21836:13;21833:39;;;21852:18;;:::i;:::-;-1:-1:-1;21888:9:1;;21775:128::o;21908:120::-;21948:1;21974;21964:35;;21979:18;;:::i;:::-;-1:-1:-1;22013:9:1;;21908:120::o;22033:168::-;22073:7;22139:1;22135;22131:6;22127:14;22124:1;22121:21;22116:1;22109:9;22102:17;22098:45;22095:71;;;22146:18;;:::i;:::-;-1:-1:-1;22186:9:1;;22033:168::o;22206:125::-;22246:4;22274:1;22271;22268:8;22265:34;;;22279:18;;:::i;:::-;-1:-1:-1;22316:9:1;;22206:125::o;22336:258::-;22408:1;22418:113;22432:6;22429:1;22426:13;22418:113;;;22508:11;;;22502:18;22489:11;;;22482:39;22454:2;22447:10;22418:113;;;22549:6;22546:1;22543:13;22540:48;;;22584:1;22575:6;22570:3;22566:16;22559:27;22540:48;;22336:258;;;:::o;22599:380::-;22678:1;22674:12;;;;22721;;;22742:61;;22796:4;22788:6;22784:17;22774:27;;22742:61;22849:2;22841:6;22838:14;22818:18;22815:38;22812:161;;;22895:10;22890:3;22886:20;22883:1;22876:31;22930:4;22927:1;22920:15;22958:4;22955:1;22948:15;22812:161;;22599:380;;;:::o;22984:249::-;23094:2;23075:13;;-1:-1:-1;;23071:27:1;23059:40;;23129:18;23114:34;;23150:22;;;23111:62;23108:88;;;23176:18;;:::i;:::-;23212:2;23205:22;-1:-1:-1;;22984:249:1:o;23238:135::-;23277:3;-1:-1:-1;;23298:17:1;;23295:43;;;23318:18;;:::i;:::-;-1:-1:-1;23365:1:1;23354:13;;23238:135::o;23378:201::-;23416:3;23444:10;23489:2;23482:5;23478:14;23516:2;23507:7;23504:15;23501:41;;;23522:18;;:::i;:::-;23571:1;23558:15;;23378:201;-1:-1:-1;;;23378:201:1:o;23584:112::-;23616:1;23642;23632:35;;23647:18;;:::i;:::-;-1:-1:-1;23681:9:1;;23584:112::o;23701:127::-;23762:10;23757:3;23753:20;23750:1;23743:31;23793:4;23790:1;23783:15;23817:4;23814:1;23807:15;23833:127;23894:10;23889:3;23885:20;23882:1;23875:31;23925:4;23922:1;23915:15;23949:4;23946:1;23939:15;23965:127;24026:10;24021:3;24017:20;24014:1;24007:31;24057:4;24054:1;24047:15;24081:4;24078:1;24071:15;24097:127;24158:10;24153:3;24149:20;24146:1;24139:31;24189:4;24186:1;24179:15;24213:4;24210:1;24203:15;24229:179;24264:3;24306:1;24288:16;24285:23;24282:120;;;24352:1;24349;24346;24331:23;-1:-1:-1;24389:1:1;24383:8;24378:3;24374:18;24282:120;24229:179;:::o;24413:671::-;24452:3;24494:4;24476:16;24473:26;24470:39;;;24413:671;:::o;24470:39::-;24536:2;24530:9;-1:-1:-1;;24601:16:1;24597:25;;24594:1;24530:9;24573:50;24652:4;24646:11;24676:16;24711:18;24782:2;24775:4;24767:6;24763:17;24760:25;24755:2;24747:6;24744:14;24741:45;24738:58;;;24789:5;;;;;24413:671;:::o;24738:58::-;24826:6;24820:4;24816:17;24805:28;;24862:3;24856:10;24889:2;24881:6;24878:14;24875:27;;;24895:5;;;;;;24413:671;:::o;24875:27::-;24979:2;24960:16;24954:4;24950:27;24946:36;24939:4;24930:6;24925:3;24921:16;24917:27;24914:69;24911:82;;;24986:5;;;;;;24413:671;:::o;24911:82::-;25002:57;25053:4;25044:6;25036;25032:19;25028:30;25022:4;25002:57;:::i;:::-;-1:-1:-1;25075:3:1;;24413:671;-1:-1:-1;;;;;24413:671:1:o;25089:131::-;-1:-1:-1;;;;;;25163:32:1;;25153:43;;25143:71;;25210:1;25207;25200:12
Swarm Source
ipfs://8afd06efb1270fd58c7f13471f8f57216387de600a70ff7412d2d132077d90cb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.