Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
11 SBROS
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SBROSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
StarBros
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-20 */ // SPDX-License-Identifier: None // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/8b778fa20d6d76340c5fac1ed66c80273f05b95a/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/8b778fa20d6d76340c5fac1ed66c80273f05b95a/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/chiru-labs/ERC721A/blob/54bc54abf0ea25bcbb2a765921a9f3e9bc27475f/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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 approved 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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/54bc54abf0ea25bcbb2a765921a9f3e9bc27475f/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // 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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } pragma solidity ^0.8.4; contract StarBros is ERC721A, Ownable { uint256 constant EXTRA_MINT_PRICE = 0.003 ether; uint256 constant MAX_SUPPLY_PLUS_ONE = 5555; uint256 constant MAX_PER_TRANSACTION_PLUS_ONE = 6; string tokenBaseUri = "https://"; bool public paused = true; mapping(address => uint256) private _freeMintedCount; constructor() ERC721A("StarBros", "SBROS") {} function mint(uint256 _quantity) external payable { require(!paused, "Sorry, the contract is paused"); uint256 _totalSupply = totalSupply(); require(_totalSupply + _quantity < MAX_SUPPLY_PLUS_ONE, "We are sold out, sorry"); require(_quantity < MAX_PER_TRANSACTION_PLUS_ONE, "You can't mint that much NFTs"); uint256 payForCount = _quantity; uint256 freeMintCount = _freeMintedCount[msg.sender]; if (freeMintCount < 1) { if (_quantity > 1) { payForCount = _quantity - 1; } else { payForCount = 0; } _freeMintedCount[msg.sender] = 1; } require(msg.value >= payForCount * EXTRA_MINT_PRICE, "Put the exact amount sir"); _mint(msg.sender, _quantity); } function freeMintedCount(address owner) external view returns (uint256) { return _freeMintedCount[owner]; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return tokenBaseUri; } function setBaseURI(string calldata _newBaseUri) external onlyOwner { tokenBaseUri = _newBaseUri; } function flipSale() external onlyOwner { paused = !paused; } function collectReserves() external onlyOwner { require(totalSupply() == 0, "Reserves already taken"); _mint(msg.sender, 100); } function withdraw() external onlyOwner { require( payable(owner()).send(address(this).balance), "Withdraw unsuccessful" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"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":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseUri","type":"string"}],"name":"setBaseURI","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
60806040526040518060400160405280600881526020017f68747470733a2f2f00000000000000000000000000000000000000000000000081525060099080519060200190620000519291906200022e565b506001600a60006101000a81548160ff0219169083151502179055503480156200007a57600080fd5b506040518060400160405280600881526020017f5374617242726f730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5342524f530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff9291906200022e565b508060039080519060200190620001189291906200022e565b50620001296200015760201b60201c565b600081905550505062000151620001456200016060201b60201c565b6200016860201b60201c565b62000343565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023c90620002de565b90600052602060002090601f016020900481019282620002605760008555620002ac565b82601f106200027b57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ab5782518255916020019190600101906200028e565b5b509050620002bb9190620002bf565b5090565b5b80821115620002da576000816000905550600101620002c0565b5090565b60006002820490506001821680620002f757607f821691505b602082108114156200030e576200030d62000314565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61299080620003536000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f9f565b610569565b60405161018491906122e6565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b961065a565b6040516101c69190612301565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f19190612046565b6106ec565b604051610203919061227f565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611f5f565b610768565b005b34801561024157600080fd5b5061024a6108a9565b6040516102579190612423565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611e49565b6108c0565b005b34801561029557600080fd5b5061029e610be5565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611e49565b610c6a565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611ff9565b610c8a565b005b3480156102fe57600080fd5b50610307610ca8565b60405161031491906122e6565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612046565b610cbb565b604051610351919061227f565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611ddc565b610ccd565b60405161038e9190612423565b60405180910390f35b3480156103a357600080fd5b506103ac610d86565b005b3480156103ba57600080fd5b506103c3610d9a565b005b3480156103d157600080fd5b506103da610dce565b6040516103e7919061227f565b60405180910390f35b3480156103fc57600080fd5b50610405610df8565b6040516104129190612301565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190611ddc565b610e8a565b60405161044f9190612423565b60405180910390f35b610472600480360381019061046d9190612046565b610ed3565b005b34801561048057600080fd5b5061049b60048036038101906104969190611f1f565b6110e0565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190611e9c565b611258565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190612046565b6112cb565b6040516104fa9190612301565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190611e09565b61136a565b60405161053791906122e6565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190611ddc565b6113fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611482565b600061060d6108a9565b1461064d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610644906123c3565b60405180910390fd5b610658336064611500565b565b60606002805461066990612671565b80601f016020809104026020016040519081016040528092919081815260200182805461069590612671565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826116d4565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff16610794611733565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576107c0816107bb611733565b61136a565b6107f6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108b361173b565b6001546000540303905090565b60006108cb82611744565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610932576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061093e84611812565b91509150610954818761094f611733565b611834565b6109a05761096986610964611733565b61136a565b61099f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a07576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a148686866001611878565b8015610a1f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aed85610ac988888761187e565b7c0200000000000000000000000000000000000000000000000000000000176118a6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b75576000600185019050600060046000838152602001908152602001600020541415610b73576000548114610b72578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bdd86868660016118d1565b505050505050565b610bed611482565b610bf5610dce565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906123e3565b60405180910390fd5b565b610c8583838360405180602001604052806000815250611258565b505050565b610c92611482565b818160099190610ca3929190611c0a565b505050565b600a60009054906101000a900460ff1681565b6000610cc682611744565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d8e611482565b610d9860006118d7565b565b610da2611482565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0790612671565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3390612671565b8015610e805780601f10610e5557610100808354040283529160200191610e80565b820191906000526020600020905b815481529060010190602001808311610e6357829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906123a3565b60405180910390fd5b6000610f2d6108a9565b90506115b38282610f3e91906124d7565b10610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590612403565b60405180910390fd5b60068210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890612323565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561107b576001841115611030576001846110299190612587565b9150611035565b600091505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b660aa87bee5380008261108e919061252d565b3410156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612383565b60405180910390fd5b6110da3385611500565b50505050565b6110e8611733565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115a611733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611207611733565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124c91906122e6565b60405180910390a35050565b6112638484846108c0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c55761128e8484848461199d565b6112c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d6826116d4565b61130c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611316611afd565b90506000815114156113375760405180602001604052806000815250611362565b8061134184611b8f565b60405160200161135292919061225b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611406611482565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90612343565b60405180910390fd5b61147f816118d7565b50565b61148a611be9565b73ffffffffffffffffffffffffffffffffffffffff166114a8610dce565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590612363565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156115a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115b56000848385611878565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061162c8361161d600086600061187e565b61162685611bf1565b176118a6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611650578060008190555050506116cf60008483856118d1565b505050565b6000816116df61173b565b111580156116ee575060005482105b801561172c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061175361173b565b116117db576000548110156117da5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117d8575b60008114156117ce5760046000836001900393508381526020019081526020016000205490506117a3565b809250505061180d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611895868684611c01565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c3611733565b8786866040518563ffffffff1660e01b81526004016119e5949392919061229a565b602060405180830381600087803b1580156119ff57600080fd5b505af1925050508015611a3057506040513d601f19601f82011682018060405250810190611a2d9190611fcc565b60015b611aaa573d8060008114611a60576040519150601f19603f3d011682016040523d82523d6000602084013e611a65565b606091505b50600081511415611aa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b0c90612671565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3890612671565b8015611b855780601f10611b5a57610100808354040283529160200191611b85565b820191906000526020600020905b815481529060010190602001808311611b6857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bd557600183039250600a81066030018353600a81049050611bb5565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c1690612671565b90600052602060002090601f016020900481019282611c385760008555611c7f565b82601f10611c5157803560ff1916838001178555611c7f565b82800160010185558215611c7f579182015b82811115611c7e578235825591602001919060010190611c63565b5b509050611c8c9190611c90565b5090565b5b80821115611ca9576000816000905550600101611c91565b5090565b6000611cc0611cbb84612463565b61243e565b905082815260208101848484011115611cdc57611cdb612770565b5b611ce784828561262f565b509392505050565b600081359050611cfe816128fe565b92915050565b600081359050611d1381612915565b92915050565b600081359050611d288161292c565b92915050565b600081519050611d3d8161292c565b92915050565b600082601f830112611d5857611d57612766565b5b8135611d68848260208601611cad565b91505092915050565b60008083601f840112611d8757611d86612766565b5b8235905067ffffffffffffffff811115611da457611da3612761565b5b602083019150836001820283011115611dc057611dbf61276b565b5b9250929050565b600081359050611dd681612943565b92915050565b600060208284031215611df257611df161277a565b5b6000611e0084828501611cef565b91505092915050565b60008060408385031215611e2057611e1f61277a565b5b6000611e2e85828601611cef565b9250506020611e3f85828601611cef565b9150509250929050565b600080600060608486031215611e6257611e6161277a565b5b6000611e7086828701611cef565b9350506020611e8186828701611cef565b9250506040611e9286828701611dc7565b9150509250925092565b60008060008060808587031215611eb657611eb561277a565b5b6000611ec487828801611cef565b9450506020611ed587828801611cef565b9350506040611ee687828801611dc7565b925050606085013567ffffffffffffffff811115611f0757611f06612775565b5b611f1387828801611d43565b91505092959194509250565b60008060408385031215611f3657611f3561277a565b5b6000611f4485828601611cef565b9250506020611f5585828601611d04565b9150509250929050565b60008060408385031215611f7657611f7561277a565b5b6000611f8485828601611cef565b9250506020611f9585828601611dc7565b9150509250929050565b600060208284031215611fb557611fb461277a565b5b6000611fc384828501611d19565b91505092915050565b600060208284031215611fe257611fe161277a565b5b6000611ff084828501611d2e565b91505092915050565b600080602083850312156120105761200f61277a565b5b600083013567ffffffffffffffff81111561202e5761202d612775565b5b61203a85828601611d71565b92509250509250929050565b60006020828403121561205c5761205b61277a565b5b600061206a84828501611dc7565b91505092915050565b61207c816125bb565b82525050565b61208b816125cd565b82525050565b600061209c82612494565b6120a681856124aa565b93506120b681856020860161263e565b6120bf8161277f565b840191505092915050565b60006120d58261249f565b6120df81856124bb565b93506120ef81856020860161263e565b6120f88161277f565b840191505092915050565b600061210e8261249f565b61211881856124cc565b935061212881856020860161263e565b80840191505092915050565b6000612141601d836124bb565b915061214c82612790565b602082019050919050565b60006121646026836124bb565b915061216f826127b9565b604082019050919050565b60006121876020836124bb565b915061219282612808565b602082019050919050565b60006121aa6018836124bb565b91506121b582612831565b602082019050919050565b60006121cd601d836124bb565b91506121d88261285a565b602082019050919050565b60006121f06016836124bb565b91506121fb82612883565b602082019050919050565b60006122136015836124bb565b915061221e826128ac565b602082019050919050565b60006122366016836124bb565b9150612241826128d5565b602082019050919050565b61225581612625565b82525050565b60006122678285612103565b91506122738284612103565b91508190509392505050565b60006020820190506122946000830184612073565b92915050565b60006080820190506122af6000830187612073565b6122bc6020830186612073565b6122c9604083018561224c565b81810360608301526122db8184612091565b905095945050505050565b60006020820190506122fb6000830184612082565b92915050565b6000602082019050818103600083015261231b81846120ca565b905092915050565b6000602082019050818103600083015261233c81612134565b9050919050565b6000602082019050818103600083015261235c81612157565b9050919050565b6000602082019050818103600083015261237c8161217a565b9050919050565b6000602082019050818103600083015261239c8161219d565b9050919050565b600060208201905081810360008301526123bc816121c0565b9050919050565b600060208201905081810360008301526123dc816121e3565b9050919050565b600060208201905081810360008301526123fc81612206565b9050919050565b6000602082019050818103600083015261241c81612229565b9050919050565b6000602082019050612438600083018461224c565b92915050565b6000612448612459565b905061245482826126a3565b919050565b6000604051905090565b600067ffffffffffffffff82111561247e5761247d612732565b5b6124878261277f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124e282612625565b91506124ed83612625565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612522576125216126d4565b5b828201905092915050565b600061253882612625565b915061254383612625565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561257c5761257b6126d4565b5b828202905092915050565b600061259282612625565b915061259d83612625565b9250828210156125b0576125af6126d4565b5b828203905092915050565b60006125c682612605565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561265c578082015181840152602081019050612641565b8381111561266b576000848401525b50505050565b6000600282049050600182168061268957607f821691505b6020821081141561269d5761269c612703565b5b50919050565b6126ac8261277f565b810181811067ffffffffffffffff821117156126cb576126ca612732565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f752063616e2774206d696e742074686174206d756368204e465473000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075742074686520657861637420616d6f756e74207369720000000000000000600082015250565b7f536f7272792c2074686520636f6e747261637420697320706175736564000000600082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f57652061726520736f6c64206f75742c20736f72727900000000000000000000600082015250565b612907816125bb565b811461291257600080fd5b50565b61291e816125cd565b811461292957600080fd5b50565b612935816125d9565b811461294057600080fd5b50565b61294c81612625565b811461295757600080fd5b5056fea2646970667358221220d1f2bcff50237717b799a66250319565cebe699deec3158753347f510a59fbc664736f6c63430008070033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f9f565b610569565b60405161018491906122e6565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b961065a565b6040516101c69190612301565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f19190612046565b6106ec565b604051610203919061227f565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611f5f565b610768565b005b34801561024157600080fd5b5061024a6108a9565b6040516102579190612423565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611e49565b6108c0565b005b34801561029557600080fd5b5061029e610be5565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611e49565b610c6a565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611ff9565b610c8a565b005b3480156102fe57600080fd5b50610307610ca8565b60405161031491906122e6565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612046565b610cbb565b604051610351919061227f565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611ddc565b610ccd565b60405161038e9190612423565b60405180910390f35b3480156103a357600080fd5b506103ac610d86565b005b3480156103ba57600080fd5b506103c3610d9a565b005b3480156103d157600080fd5b506103da610dce565b6040516103e7919061227f565b60405180910390f35b3480156103fc57600080fd5b50610405610df8565b6040516104129190612301565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190611ddc565b610e8a565b60405161044f9190612423565b60405180910390f35b610472600480360381019061046d9190612046565b610ed3565b005b34801561048057600080fd5b5061049b60048036038101906104969190611f1f565b6110e0565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190611e9c565b611258565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190612046565b6112cb565b6040516104fa9190612301565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190611e09565b61136a565b60405161053791906122e6565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190611ddc565b6113fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611482565b600061060d6108a9565b1461064d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610644906123c3565b60405180910390fd5b610658336064611500565b565b60606002805461066990612671565b80601f016020809104026020016040519081016040528092919081815260200182805461069590612671565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826116d4565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff16610794611733565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576107c0816107bb611733565b61136a565b6107f6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108b361173b565b6001546000540303905090565b60006108cb82611744565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610932576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061093e84611812565b91509150610954818761094f611733565b611834565b6109a05761096986610964611733565b61136a565b61099f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a07576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a148686866001611878565b8015610a1f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aed85610ac988888761187e565b7c0200000000000000000000000000000000000000000000000000000000176118a6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b75576000600185019050600060046000838152602001908152602001600020541415610b73576000548114610b72578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bdd86868660016118d1565b505050505050565b610bed611482565b610bf5610dce565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906123e3565b60405180910390fd5b565b610c8583838360405180602001604052806000815250611258565b505050565b610c92611482565b818160099190610ca3929190611c0a565b505050565b600a60009054906101000a900460ff1681565b6000610cc682611744565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d8e611482565b610d9860006118d7565b565b610da2611482565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0790612671565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3390612671565b8015610e805780601f10610e5557610100808354040283529160200191610e80565b820191906000526020600020905b815481529060010190602001808311610e6357829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906123a3565b60405180910390fd5b6000610f2d6108a9565b90506115b38282610f3e91906124d7565b10610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590612403565b60405180910390fd5b60068210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890612323565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561107b576001841115611030576001846110299190612587565b9150611035565b600091505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b660aa87bee5380008261108e919061252d565b3410156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612383565b60405180910390fd5b6110da3385611500565b50505050565b6110e8611733565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115a611733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611207611733565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124c91906122e6565b60405180910390a35050565b6112638484846108c0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c55761128e8484848461199d565b6112c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d6826116d4565b61130c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611316611afd565b90506000815114156113375760405180602001604052806000815250611362565b8061134184611b8f565b60405160200161135292919061225b565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611406611482565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90612343565b60405180910390fd5b61147f816118d7565b50565b61148a611be9565b73ffffffffffffffffffffffffffffffffffffffff166114a8610dce565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590612363565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156115a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115b56000848385611878565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061162c8361161d600086600061187e565b61162685611bf1565b176118a6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611650578060008190555050506116cf60008483856118d1565b505050565b6000816116df61173b565b111580156116ee575060005482105b801561172c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061175361173b565b116117db576000548110156117da5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117d8575b60008114156117ce5760046000836001900393508381526020019081526020016000205490506117a3565b809250505061180d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611895868684611c01565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c3611733565b8786866040518563ffffffff1660e01b81526004016119e5949392919061229a565b602060405180830381600087803b1580156119ff57600080fd5b505af1925050508015611a3057506040513d601f19601f82011682018060405250810190611a2d9190611fcc565b60015b611aaa573d8060008114611a60576040519150601f19603f3d011682016040523d82523d6000602084013e611a65565b606091505b50600081511415611aa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b0c90612671565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3890612671565b8015611b855780601f10611b5a57610100808354040283529160200191611b85565b820191906000526020600020905b815481529060010190602001808311611b6857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bd557600183039250600a81066030018353600a81049050611bb5565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c1690612671565b90600052602060002090601f016020900481019282611c385760008555611c7f565b82601f10611c5157803560ff1916838001178555611c7f565b82800160010185558215611c7f579182015b82811115611c7e578235825591602001919060010190611c63565b5b509050611c8c9190611c90565b5090565b5b80821115611ca9576000816000905550600101611c91565b5090565b6000611cc0611cbb84612463565b61243e565b905082815260208101848484011115611cdc57611cdb612770565b5b611ce784828561262f565b509392505050565b600081359050611cfe816128fe565b92915050565b600081359050611d1381612915565b92915050565b600081359050611d288161292c565b92915050565b600081519050611d3d8161292c565b92915050565b600082601f830112611d5857611d57612766565b5b8135611d68848260208601611cad565b91505092915050565b60008083601f840112611d8757611d86612766565b5b8235905067ffffffffffffffff811115611da457611da3612761565b5b602083019150836001820283011115611dc057611dbf61276b565b5b9250929050565b600081359050611dd681612943565b92915050565b600060208284031215611df257611df161277a565b5b6000611e0084828501611cef565b91505092915050565b60008060408385031215611e2057611e1f61277a565b5b6000611e2e85828601611cef565b9250506020611e3f85828601611cef565b9150509250929050565b600080600060608486031215611e6257611e6161277a565b5b6000611e7086828701611cef565b9350506020611e8186828701611cef565b9250506040611e9286828701611dc7565b9150509250925092565b60008060008060808587031215611eb657611eb561277a565b5b6000611ec487828801611cef565b9450506020611ed587828801611cef565b9350506040611ee687828801611dc7565b925050606085013567ffffffffffffffff811115611f0757611f06612775565b5b611f1387828801611d43565b91505092959194509250565b60008060408385031215611f3657611f3561277a565b5b6000611f4485828601611cef565b9250506020611f5585828601611d04565b9150509250929050565b60008060408385031215611f7657611f7561277a565b5b6000611f8485828601611cef565b9250506020611f9585828601611dc7565b9150509250929050565b600060208284031215611fb557611fb461277a565b5b6000611fc384828501611d19565b91505092915050565b600060208284031215611fe257611fe161277a565b5b6000611ff084828501611d2e565b91505092915050565b600080602083850312156120105761200f61277a565b5b600083013567ffffffffffffffff81111561202e5761202d612775565b5b61203a85828601611d71565b92509250509250929050565b60006020828403121561205c5761205b61277a565b5b600061206a84828501611dc7565b91505092915050565b61207c816125bb565b82525050565b61208b816125cd565b82525050565b600061209c82612494565b6120a681856124aa565b93506120b681856020860161263e565b6120bf8161277f565b840191505092915050565b60006120d58261249f565b6120df81856124bb565b93506120ef81856020860161263e565b6120f88161277f565b840191505092915050565b600061210e8261249f565b61211881856124cc565b935061212881856020860161263e565b80840191505092915050565b6000612141601d836124bb565b915061214c82612790565b602082019050919050565b60006121646026836124bb565b915061216f826127b9565b604082019050919050565b60006121876020836124bb565b915061219282612808565b602082019050919050565b60006121aa6018836124bb565b91506121b582612831565b602082019050919050565b60006121cd601d836124bb565b91506121d88261285a565b602082019050919050565b60006121f06016836124bb565b91506121fb82612883565b602082019050919050565b60006122136015836124bb565b915061221e826128ac565b602082019050919050565b60006122366016836124bb565b9150612241826128d5565b602082019050919050565b61225581612625565b82525050565b60006122678285612103565b91506122738284612103565b91508190509392505050565b60006020820190506122946000830184612073565b92915050565b60006080820190506122af6000830187612073565b6122bc6020830186612073565b6122c9604083018561224c565b81810360608301526122db8184612091565b905095945050505050565b60006020820190506122fb6000830184612082565b92915050565b6000602082019050818103600083015261231b81846120ca565b905092915050565b6000602082019050818103600083015261233c81612134565b9050919050565b6000602082019050818103600083015261235c81612157565b9050919050565b6000602082019050818103600083015261237c8161217a565b9050919050565b6000602082019050818103600083015261239c8161219d565b9050919050565b600060208201905081810360008301526123bc816121c0565b9050919050565b600060208201905081810360008301526123dc816121e3565b9050919050565b600060208201905081810360008301526123fc81612206565b9050919050565b6000602082019050818103600083015261241c81612229565b9050919050565b6000602082019050612438600083018461224c565b92915050565b6000612448612459565b905061245482826126a3565b919050565b6000604051905090565b600067ffffffffffffffff82111561247e5761247d612732565b5b6124878261277f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124e282612625565b91506124ed83612625565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612522576125216126d4565b5b828201905092915050565b600061253882612625565b915061254383612625565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561257c5761257b6126d4565b5b828202905092915050565b600061259282612625565b915061259d83612625565b9250828210156125b0576125af6126d4565b5b828203905092915050565b60006125c682612605565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561265c578082015181840152602081019050612641565b8381111561266b576000848401525b50505050565b6000600282049050600182168061268957607f821691505b6020821081141561269d5761269c612703565b5b50919050565b6126ac8261277f565b810181811067ffffffffffffffff821117156126cb576126ca612732565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f752063616e2774206d696e742074686174206d756368204e465473000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075742074686520657861637420616d6f756e74207369720000000000000000600082015250565b7f536f7272792c2074686520636f6e747261637420697320706175736564000000600082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f57652061726520736f6c64206f75742c20736f72727900000000000000000000600082015250565b612907816125bb565b811461291257600080fd5b50565b61291e816125cd565b811461292957600080fd5b50565b612935816125d9565b811461294057600080fd5b50565b61294c81612625565b811461295757600080fd5b5056fea2646970667358221220d1f2bcff50237717b799a66250319565cebe699deec3158753347f510a59fbc664736f6c63430008070033
Deployed Bytecode Sourcemap
48698:1955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18541:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50350:143;;;;;;;;;;;;;:::i;:::-;;24188:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26134:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25682:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17595:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35399:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50499:151;;;;;;;;;;;;;:::i;:::-;;27024:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50163:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48936:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23977:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19220:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2980:103;;;;;;;;;;;;;:::i;:::-;;50276:68;;;;;;;;;;;;;:::i;:::-;;2332:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24357:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49844:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49078:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26410:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27280:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24532:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26789:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3238:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18541:615;18626:4;18941:10;18926:25;;:11;:25;;;;:102;;;;19018:10;19003:25;;:11;:25;;;;18926:102;:179;;;;19095:10;19080:25;;:11;:25;;;;18926:179;18906:199;;18541:615;;;:::o;50350:143::-;2218:13;:11;:13::i;:::-;50428:1:::1;50411:13;:11;:13::i;:::-;:18;50403:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50465:22;50471:10;50483:3;50465:5;:22::i;:::-;50350:143::o:0;24188:100::-;24242:13;24275:5;24268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24188:100;:::o;26134:204::-;26202:7;26227:16;26235:7;26227;:16::i;:::-;26222:64;;26252:34;;;;;;;;;;;;;;26222:64;26306:15;:24;26322:7;26306:24;;;;;;;;;;;;;;;;;;;;;26299:31;;26134:204;;;:::o;25682:386::-;25755:13;25771:16;25779:7;25771;:16::i;:::-;25755:32;;25827:5;25804:28;;:19;:17;:19::i;:::-;:28;;;25800:175;;25852:44;25869:5;25876:19;:17;:19::i;:::-;25852:16;:44::i;:::-;25847:128;;25924:35;;;;;;;;;;;;;;25847:128;25800:175;26014:2;25987:15;:24;26003:7;25987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26052:7;26048:2;26032:28;;26041:5;26032:28;;;;;;;;;;;;25744:324;25682:386;;:::o;17595:315::-;17648:7;17876:15;:13;:15::i;:::-;17861:12;;17845:13;;:28;:46;17838:53;;17595:315;:::o;35399:2800::-;35533:27;35563;35582:7;35563:18;:27::i;:::-;35533:57;;35648:4;35607:45;;35623:19;35607:45;;;35603:86;;35661:28;;;;;;;;;;;;;;35603:86;35703:27;35732:23;35759:28;35779:7;35759:19;:28::i;:::-;35702:85;;;;35887:62;35906:15;35923:4;35929:19;:17;:19::i;:::-;35887:18;:62::i;:::-;35882:174;;35969:43;35986:4;35992:19;:17;:19::i;:::-;35969:16;:43::i;:::-;35964:92;;36021:35;;;;;;;;;;;;;;35964:92;35882:174;36087:1;36073:16;;:2;:16;;;36069:52;;;36098:23;;;;;;;;;;;;;;36069:52;36134:43;36156:4;36162:2;36166:7;36175:1;36134:21;:43::i;:::-;36270:15;36267:160;;;36410:1;36389:19;36382:30;36267:160;36805:18;:24;36824:4;36805:24;;;;;;;;;;;;;;;;36803:26;;;;;;;;;;;;36874:18;:22;36893:2;36874:22;;;;;;;;;;;;;;;;36872:24;;;;;;;;;;;37196:145;37233:2;37281:45;37296:4;37302:2;37306:19;37281:14;:45::i;:::-;14823:8;37254:72;37196:18;:145::i;:::-;37167:17;:26;37185:7;37167:26;;;;;;;;;;;:174;;;;37511:1;14823:8;37461:19;:46;:51;37457:626;;;37533:19;37565:1;37555:7;:11;37533:33;;37722:1;37688:17;:30;37706:11;37688:30;;;;;;;;;;;;:35;37684:384;;;37826:13;;37811:11;:28;37807:242;;38006:19;37973:17;:30;37991:11;37973:30;;;;;;;;;;;:52;;;;37807:242;37684:384;37514:569;37457:626;38130:7;38126:2;38111:27;;38120:4;38111:27;;;;;;;;;;;;38149:42;38170:4;38176:2;38180:7;38189:1;38149:20;:42::i;:::-;35522:2677;;;35399:2800;;;:::o;50499:151::-;2218:13;:11;:13::i;:::-;50569:7:::1;:5;:7::i;:::-;50561:21;;:44;50583:21;50561:44;;;;;;;;;;;;;;;;;;;;;;;50545:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;50499:151::o:0;27024:185::-;27162:39;27179:4;27185:2;27189:7;27162:39;;;;;;;;;;;;:16;:39::i;:::-;27024:185;;;:::o;50163:107::-;2218:13;:11;:13::i;:::-;50253:11:::1;;50238:12;:26;;;;;;;:::i;:::-;;50163:107:::0;;:::o;48936:25::-;;;;;;;;;;;;;:::o;23977:144::-;24041:7;24084:27;24103:7;24084:18;:27::i;:::-;24061:52;;23977:144;;;:::o;19220:224::-;19284:7;19325:1;19308:19;;:5;:19;;;19304:60;;;19336:28;;;;;;;;;;;;;;19304:60;13775:13;19382:18;:25;19401:5;19382:25;;;;;;;;;;;;;;;;:54;19375:61;;19220:224;;;:::o;2980:103::-;2218:13;:11;:13::i;:::-;3045:30:::1;3072:1;3045:18;:30::i;:::-;2980:103::o:0;50276:68::-;2218:13;:11;:13::i;:::-;50332:6:::1;;;;;;;;;;;50331:7;50322:6;;:16;;;;;;;;;;;;;;;;;;50276:68::o:0;2332:87::-;2378:7;2405:6;;;;;;;;;;;2398:13;;2332:87;:::o;24357:104::-;24413:13;24446:7;24439:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24357:104;:::o;49844:115::-;49907:7;49930:16;:23;49947:5;49930:23;;;;;;;;;;;;;;;;49923:30;;49844:115;;;:::o;49078:760::-;49144:6;;;;;;;;;;;49143:7;49135:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49193:20;49216:13;:11;:13::i;:::-;49193:36;;48832:4;49261:9;49246:12;:24;;;;:::i;:::-;:46;49238:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48889:1;49334:9;:40;49326:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;49417:19;49439:9;49417:31;;49455:21;49479:16;:28;49496:10;49479:28;;;;;;;;;;;;;;;;49455:52;;49536:1;49520:13;:17;49516:191;;;49564:1;49552:9;:13;49548:109;;;49604:1;49592:9;:13;;;;:::i;:::-;49578:27;;49548:109;;;49646:1;49632:15;;49548:109;49698:1;49667:16;:28;49684:10;49667:28;;;;;;;;;;;;;;;:32;;;;49516:191;48777:11;49736;:30;;;;:::i;:::-;49723:9;:43;;49715:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49804:28;49810:10;49822:9;49804:5;:28::i;:::-;49128:710;;;49078:760;:::o;26410:308::-;26521:19;:17;:19::i;:::-;26509:31;;:8;:31;;;26505:61;;;26549:17;;;;;;;;;;;;;;26505:61;26631:8;26579:18;:39;26598:19;:17;:19::i;:::-;26579:39;;;;;;;;;;;;;;;:49;26619:8;26579:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26691:8;26655:55;;26670:19;:17;:19::i;:::-;26655:55;;;26701:8;26655:55;;;;;;:::i;:::-;;;;;;;;26410:308;;:::o;27280:399::-;27447:31;27460:4;27466:2;27470:7;27447:12;:31::i;:::-;27511:1;27493:2;:14;;;:19;27489:183;;27532:56;27563:4;27569:2;27573:7;27582:5;27532:30;:56::i;:::-;27527:145;;27616:40;;;;;;;;;;;;;;27527:145;27489:183;27280:399;;;;:::o;24532:318::-;24605:13;24636:16;24644:7;24636;:16::i;:::-;24631:59;;24661:29;;;;;;;;;;;;;;24631:59;24703:21;24727:10;:8;:10::i;:::-;24703:34;;24780:1;24761:7;24755:21;:26;;:87;;;;;;;;;;;;;;;;;24808:7;24817:18;24827:7;24817:9;:18::i;:::-;24791:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24755:87;24748:94;;;24532:318;;;:::o;26789:164::-;26886:4;26910:18;:25;26929:5;26910:25;;;;;;;;;;;;;;;:35;26936:8;26910:35;;;;;;;;;;;;;;;;;;;;;;;;;26903:42;;26789:164;;;;:::o;3238:201::-;2218:13;:11;:13::i;:::-;3347:1:::1;3327:22;;:8;:22;;;;3319:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3403:28;3422:8;3403:18;:28::i;:::-;3238:201:::0;:::o;2497:132::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2497:132::o;29765:1529::-;29830:20;29853:13;;29830:36;;29895:1;29881:16;;:2;:16;;;29877:48;;;29906:19;;;;;;;;;;;;;;29877:48;29952:1;29940:8;:13;29936:44;;;29962:18;;;;;;;;;;;;;;29936:44;29993:61;30023:1;30027:2;30031:12;30045:8;29993:21;:61::i;:::-;30536:1;13912:2;30507:1;:25;;30506:31;30494:8;:44;30468:18;:22;30487:2;30468:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30815:139;30852:2;30906:33;30929:1;30933:2;30937:1;30906:14;:33::i;:::-;30873:30;30894:8;30873:20;:30::i;:::-;:66;30815:18;:139::i;:::-;30781:17;:31;30799:12;30781:31;;;;;;;;;;;:173;;;;30971:15;30989:12;30971:30;;31016:11;31045:8;31030:12;:23;31016:37;;31068:101;31120:9;;;;;;31116:2;31095:35;;31112:1;31095:35;;;;;;;;;;;;31164:3;31154:7;:13;31068:101;;31201:3;31185:13;:19;;;;30242:974;;31226:60;31255:1;31259:2;31263:12;31277:8;31226:20;:60::i;:::-;29819:1475;29765:1529;;:::o;27934:273::-;27991:4;28047:7;28028:15;:13;:15::i;:::-;:26;;:66;;;;;28081:13;;28071:7;:23;28028:66;:152;;;;;28179:1;14545:8;28132:17;:26;28150:7;28132:26;;;;;;;;;;;;:43;:48;28028:152;28008:172;;27934:273;;;:::o;46495:105::-;46555:7;46582:10;46575:17;;46495:105;:::o;49965:87::-;50022:7;50045:1;50038:8;;49965:87;:::o;20894:1129::-;20961:7;20981:12;20996:7;20981:22;;21064:4;21045:15;:13;:15::i;:::-;:23;21041:915;;21098:13;;21091:4;:20;21087:869;;;21136:14;21153:17;:23;21171:4;21153:23;;;;;;;;;;;;21136:40;;21269:1;14545:8;21242:6;:23;:28;21238:699;;;21761:113;21778:1;21768:6;:11;21761:113;;;21821:17;:25;21839:6;;;;;;;21821:25;;;;;;;;;;;;21812:34;;21761:113;;;21907:6;21900:13;;;;;;21238:699;21113:843;21087:869;21041:915;21984:31;;;;;;;;;;;;;;20894:1129;;;;:::o;33735:652::-;33830:27;33859:23;33900:53;33956:15;33900:71;;34142:7;34136:4;34129:21;34177:22;34171:4;34164:36;34253:4;34247;34237:21;34214:44;;34349:19;34343:26;34324:45;;34080:300;33735:652;;;:::o;34500:645::-;34642:11;34804:15;34798:4;34794:26;34786:34;;34963:15;34952:9;34948:31;34935:44;;35110:15;35099:9;35096:30;35089:4;35078:9;35075:19;35072:55;35062:65;;34500:645;;;;;:::o;45328:159::-;;;;;:::o;43640:309::-;43775:7;43795:16;14946:3;43821:19;:40;;43795:67;;14946:3;43888:31;43899:4;43905:2;43909:9;43888:10;:31::i;:::-;43880:40;;:61;;43873:68;;;43640:309;;;;;:::o;23468:447::-;23548:14;23716:15;23709:5;23705:27;23696:36;;23890:5;23876:11;23852:22;23848:40;23845:51;23838:5;23835:62;23825:72;;23468:447;;;;:::o;46146:158::-;;;;;:::o;3599:191::-;3673:16;3692:6;;;;;;;;;;;3673:25;;3718:8;3709:6;;:17;;;;;;;;;;;;;;;;;;3773:8;3742:40;;3763:8;3742:40;;;;;;;;;;;;3662:128;3599:191;:::o;42150:716::-;42313:4;42359:2;42334:45;;;42380:19;:17;:19::i;:::-;42401:4;42407:7;42416:5;42334:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42330:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42634:1;42617:6;:13;:18;42613:235;;;42663:40;;;;;;;;;;;;;;42613:235;42806:6;42800:13;42791:6;42787:2;42783:15;42776:38;42330:529;42503:54;;;42493:64;;;:6;:64;;;;42486:71;;;42150:716;;;;;;:::o;50058:99::-;50110:13;50139:12;50132:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50058:99;:::o;46706:1960::-;46763:17;47182:3;47175:4;47169:11;47165:21;47158:28;;47273:3;47267:4;47260:17;47379:3;47835:5;47965:1;47960:3;47956:11;47949:18;;48102:2;48096:4;48092:13;48088:2;48084:22;48079:3;48071:36;48143:2;48137:4;48133:13;48125:21;;47727:697;48162:4;47727:697;;;48353:1;48348:3;48344:11;48337:18;;48404:2;48398:4;48394:13;48390:2;48386:22;48381:3;48373:36;48257:2;48251:4;48247:13;48239:21;;47727:697;;;47731:430;48463:3;48458;48454:13;48578:2;48573:3;48569:12;48562:19;;48641:6;48636:3;48629:19;46802:1857;;46706:1960;;;:::o;796:98::-;849:7;876:10;869:17;;796:98;:::o;25298:322::-;25368:14;25599:1;25589:8;25586:15;25561:23;25557:45;25547:55;;25298:322;;;:::o;44525:147::-;44662:6;44525:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:118::-;11394:24;11412:5;11394:24;:::i;:::-;11389:3;11382:37;11307:118;;:::o;11431:435::-;11611:3;11633:95;11724:3;11715:6;11633:95;:::i;:::-;11626:102;;11745:95;11836:3;11827:6;11745:95;:::i;:::-;11738:102;;11857:3;11850:10;;11431:435;;;;;:::o;11872:222::-;11965:4;12003:2;11992:9;11988:18;11980:26;;12016:71;12084:1;12073:9;12069:17;12060:6;12016:71;:::i;:::-;11872:222;;;;:::o;12100:640::-;12295:4;12333:3;12322:9;12318:19;12310:27;;12347:71;12415:1;12404:9;12400:17;12391:6;12347:71;:::i;:::-;12428:72;12496:2;12485:9;12481:18;12472:6;12428:72;:::i;:::-;12510;12578:2;12567:9;12563:18;12554:6;12510:72;:::i;:::-;12629:9;12623:4;12619:20;12614:2;12603:9;12599:18;12592:48;12657:76;12728:4;12719:6;12657:76;:::i;:::-;12649:84;;12100:640;;;;;;;:::o;12746:210::-;12833:4;12871:2;12860:9;12856:18;12848:26;;12884:65;12946:1;12935:9;12931:17;12922:6;12884:65;:::i;:::-;12746:210;;;;:::o;12962:313::-;13075:4;13113:2;13102:9;13098:18;13090:26;;13162:9;13156:4;13152:20;13148:1;13137:9;13133:17;13126:47;13190:78;13263:4;13254:6;13190:78;:::i;:::-;13182:86;;12962:313;;;;:::o;13281:419::-;13447:4;13485:2;13474:9;13470:18;13462:26;;13534:9;13528:4;13524:20;13520:1;13509:9;13505:17;13498:47;13562:131;13688:4;13562:131;:::i;:::-;13554:139;;13281:419;;;:::o;13706:::-;13872:4;13910:2;13899:9;13895:18;13887:26;;13959:9;13953:4;13949:20;13945:1;13934:9;13930:17;13923:47;13987:131;14113:4;13987:131;:::i;:::-;13979:139;;13706:419;;;:::o;14131:::-;14297:4;14335:2;14324:9;14320:18;14312:26;;14384:9;14378:4;14374:20;14370:1;14359:9;14355:17;14348:47;14412:131;14538:4;14412:131;:::i;:::-;14404:139;;14131:419;;;:::o;14556:::-;14722:4;14760:2;14749:9;14745:18;14737:26;;14809:9;14803:4;14799:20;14795:1;14784:9;14780:17;14773:47;14837:131;14963:4;14837:131;:::i;:::-;14829:139;;14556:419;;;:::o;14981:::-;15147:4;15185:2;15174:9;15170:18;15162:26;;15234:9;15228:4;15224:20;15220:1;15209:9;15205:17;15198:47;15262:131;15388:4;15262:131;:::i;:::-;15254:139;;14981:419;;;:::o;15406:::-;15572:4;15610:2;15599:9;15595:18;15587:26;;15659:9;15653:4;15649:20;15645:1;15634:9;15630:17;15623:47;15687:131;15813:4;15687:131;:::i;:::-;15679:139;;15406:419;;;:::o;15831:::-;15997:4;16035:2;16024:9;16020:18;16012:26;;16084:9;16078:4;16074:20;16070:1;16059:9;16055:17;16048:47;16112:131;16238:4;16112:131;:::i;:::-;16104:139;;15831:419;;;:::o;16256:::-;16422:4;16460:2;16449:9;16445:18;16437:26;;16509:9;16503:4;16499:20;16495:1;16484:9;16480:17;16473:47;16537:131;16663:4;16537:131;:::i;:::-;16529:139;;16256:419;;;:::o;16681:222::-;16774:4;16812:2;16801:9;16797:18;16789:26;;16825:71;16893:1;16882:9;16878:17;16869:6;16825:71;:::i;:::-;16681:222;;;;:::o;16909:129::-;16943:6;16970:20;;:::i;:::-;16960:30;;16999:33;17027:4;17019:6;16999:33;:::i;:::-;16909:129;;;:::o;17044:75::-;17077:6;17110:2;17104:9;17094:19;;17044:75;:::o;17125:307::-;17186:4;17276:18;17268:6;17265:30;17262:56;;;17298:18;;:::i;:::-;17262:56;17336:29;17358:6;17336:29;:::i;:::-;17328:37;;17420:4;17414;17410:15;17402:23;;17125:307;;;:::o;17438:98::-;17489:6;17523:5;17517:12;17507:22;;17438:98;;;:::o;17542:99::-;17594:6;17628:5;17622:12;17612:22;;17542:99;;;:::o;17647:168::-;17730:11;17764:6;17759:3;17752:19;17804:4;17799:3;17795:14;17780:29;;17647:168;;;;:::o;17821:169::-;17905:11;17939:6;17934:3;17927:19;17979:4;17974:3;17970:14;17955:29;;17821:169;;;;:::o;17996:148::-;18098:11;18135:3;18120:18;;17996:148;;;;:::o;18150:305::-;18190:3;18209:20;18227:1;18209:20;:::i;:::-;18204:25;;18243:20;18261:1;18243:20;:::i;:::-;18238:25;;18397:1;18329:66;18325:74;18322:1;18319:81;18316:107;;;18403:18;;:::i;:::-;18316:107;18447:1;18444;18440:9;18433:16;;18150:305;;;;:::o;18461:348::-;18501:7;18524:20;18542:1;18524:20;:::i;:::-;18519:25;;18558:20;18576:1;18558:20;:::i;:::-;18553:25;;18746:1;18678:66;18674:74;18671:1;18668:81;18663:1;18656:9;18649:17;18645:105;18642:131;;;18753:18;;:::i;:::-;18642:131;18801:1;18798;18794:9;18783:20;;18461:348;;;;:::o;18815:191::-;18855:4;18875:20;18893:1;18875:20;:::i;:::-;18870:25;;18909:20;18927:1;18909:20;:::i;:::-;18904:25;;18948:1;18945;18942:8;18939:34;;;18953:18;;:::i;:::-;18939:34;18998:1;18995;18991:9;18983:17;;18815:191;;;;:::o;19012:96::-;19049:7;19078:24;19096:5;19078:24;:::i;:::-;19067:35;;19012:96;;;:::o;19114:90::-;19148:7;19191:5;19184:13;19177:21;19166:32;;19114:90;;;:::o;19210:149::-;19246:7;19286:66;19279:5;19275:78;19264:89;;19210:149;;;:::o;19365:126::-;19402:7;19442:42;19435:5;19431:54;19420:65;;19365:126;;;:::o;19497:77::-;19534:7;19563:5;19552:16;;19497:77;;;:::o;19580:154::-;19664:6;19659:3;19654;19641:30;19726:1;19717:6;19712:3;19708:16;19701:27;19580:154;;;:::o;19740:307::-;19808:1;19818:113;19832:6;19829:1;19826:13;19818:113;;;19917:1;19912:3;19908:11;19902:18;19898:1;19893:3;19889:11;19882:39;19854:2;19851:1;19847:10;19842:15;;19818:113;;;19949:6;19946:1;19943:13;19940:101;;;20029:1;20020:6;20015:3;20011:16;20004:27;19940:101;19789:258;19740:307;;;:::o;20053:320::-;20097:6;20134:1;20128:4;20124:12;20114:22;;20181:1;20175:4;20171:12;20202:18;20192:81;;20258:4;20250:6;20246:17;20236:27;;20192:81;20320:2;20312:6;20309:14;20289:18;20286:38;20283:84;;;20339:18;;:::i;:::-;20283:84;20104:269;20053:320;;;:::o;20379:281::-;20462:27;20484:4;20462:27;:::i;:::-;20454:6;20450:40;20592:6;20580:10;20577:22;20556:18;20544:10;20541:34;20538:62;20535:88;;;20603:18;;:::i;:::-;20535:88;20643:10;20639:2;20632:22;20422:238;20379:281;;:::o;20666:180::-;20714:77;20711:1;20704:88;20811:4;20808:1;20801:15;20835:4;20832:1;20825:15;20852:180;20900:77;20897:1;20890:88;20997:4;20994:1;20987:15;21021:4;21018:1;21011:15;21038:180;21086:77;21083:1;21076:88;21183:4;21180:1;21173:15;21207:4;21204:1;21197:15;21224:117;21333:1;21330;21323:12;21347:117;21456:1;21453;21446:12;21470:117;21579:1;21576;21569:12;21593:117;21702:1;21699;21692:12;21716:117;21825:1;21822;21815:12;21839:117;21948:1;21945;21938:12;21962:102;22003:6;22054:2;22050:7;22045:2;22038:5;22034:14;22030:28;22020:38;;21962:102;;;:::o;22070:179::-;22210:31;22206:1;22198:6;22194:14;22187:55;22070:179;:::o;22255:225::-;22395:34;22391:1;22383:6;22379:14;22372:58;22464:8;22459:2;22451:6;22447:15;22440:33;22255:225;:::o;22486:182::-;22626:34;22622:1;22614:6;22610:14;22603:58;22486:182;:::o;22674:174::-;22814:26;22810:1;22802:6;22798:14;22791:50;22674:174;:::o;22854:179::-;22994:31;22990:1;22982:6;22978:14;22971:55;22854:179;:::o;23039:172::-;23179:24;23175:1;23167:6;23163:14;23156:48;23039:172;:::o;23217:171::-;23357:23;23353:1;23345:6;23341:14;23334:47;23217:171;:::o;23394:172::-;23534:24;23530:1;23522:6;23518:14;23511:48;23394:172;:::o;23572:122::-;23645:24;23663:5;23645:24;:::i;:::-;23638:5;23635:35;23625:63;;23684:1;23681;23674:12;23625:63;23572:122;:::o;23700:116::-;23770:21;23785:5;23770:21;:::i;:::-;23763:5;23760:32;23750:60;;23806:1;23803;23796:12;23750:60;23700:116;:::o;23822:120::-;23894:23;23911:5;23894:23;:::i;:::-;23887:5;23884:34;23874:62;;23932:1;23929;23922:12;23874:62;23822:120;:::o;23948:122::-;24021:24;24039:5;24021:24;:::i;:::-;24014:5;24011:35;24001:63;;24060:1;24057;24050:12;24001:63;23948:122;:::o
Swarm Source
ipfs://d1f2bcff50237717b799a66250319565cebe699deec3158753347f510a59fbc6
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.