Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 TRC
Holders
127
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
32 TRCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheRebirthClub
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-26 */ // File: contracts/ERC20.sol pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval( address indexed owner, address indexed spender, uint256 amount ); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require( recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER" ); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (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: contracts/util.sol pragma solidity ^0.8.0; /// @title $UTIL Token /// @author Hub3 /* /$$ /$$ /$$$$$$$$ /$$$$$$ /$$ /$$$$$$ /$$$$$$$$ /$$ /$$ /$$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$$ /$$ /$$ | $$ | $$|__ $$__/|_ $$_/| $$ |_ $$_/|__ $$__/| $$ /$$/ |__ $$__//$$__ $$| $$ /$$/| $$_____/| $$$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ \ $$ /$$/ | $$ | $$ \ $$| $$ /$$/ | $$ | $$$$| $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ \ $$$$/ | $$ | $$ | $$| $$$$$/ | $$$$$ | $$ $$ $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ \ $$/ | $$ | $$ | $$| $$ $$ | $$__/ | $$ $$$$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$ | $$| $$\ $$ | $$ | $$\ $$$ | $$$$$$/ | $$ /$$$$$$| $$$$$$$$ /$$$$$$ | $$ | $$ | $$ | $$$$$$/| $$ \ $$| $$$$$$$$| $$ \ $$ \______/ |__/ |______/|________/|______/ |__/ |__/ |__/ \______/ |__/ \__/|________/|__/ \__/ */ contract UtilToken is ERC20, Ownable { mapping(address => bool) transferPrivileges; constructor() ERC20("Util Token", "UTIL", 18) {} uint256 TotalUtil = 1000000000 ether; function mintUtil(address recipient, uint256 amount) external { require(transferPrivileges[msg.sender], "Sender is not allowed to transfer $UTIL!"); require(totalSupply + amount <= TotalUtil, "Total $UTIL amount reached"); _mint(recipient, amount); } /*/////////////////////////////////////////////////////////////// ADMIN UTILITIES //////////////////////////////////////////////////////////////*/ function addTransferPrivileges(address contractAddress) public onlyOwner { transferPrivileges[contractAddress] = true; } function revokeTransferPrivileges(address contractAddress) public onlyOwner { transferPrivileges[contractAddress] = false; } /// @notice Allows the contract owner to burn $UTIL owned by the contract. function burn(uint256 amount) public onlyOwner { _burn(address(this), amount); } /// @notice Allows the contract owner to airdrop $UTIL owned by the contract. function airdrop(address[] calldata accounts, uint256[] calldata amounts) public onlyOwner { require(accounts.length == amounts.length); for (uint256 i = 0; i < accounts.length; i++) { uint256 amount = amounts[i]; balanceOf[address(this)] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[accounts[i]] += amount; } emit Transfer(address(this), accounts[i], amount); } } /// @notice Allows the contract owner to mint $UTIL to the contract. function mint(uint256 amount) public onlyOwner { _mint(address(this), amount); } /// @notice Withdraw $UTIL being held on this contract to the requested address. /// @param recipient The address to withdraw the funds to. /// @param amount The amount of $UTIL to withdraw function withdrawUTIL(address recipient, uint256 amount) public onlyOwner { balanceOf[address(this)] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[recipient] += amount; } emit Transfer(address(this), recipient, amount); } function updateTotalUtil(uint256 _totalUtil) public onlyOwner { TotalUtil = _totalUtil; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/TheRebirthClub.sol pragma solidity ^0.8.0; /* /$$$$$$$$ /$$ /$$$$$$$ /$$ /$$ /$$ /$$ /$$$$$$ /$$ /$$ |__ $$__/| $$ | $$__ $$ | $$ |__/ | $$ | $$ /$$__ $$| $$ | $$ | $$ | $$$$$$$ /$$$$$$ | $$ \ $$ /$$$$$$ | $$$$$$$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ | $$ \__/| $$ /$$ /$$| $$$$$$$ | $$ | $$__ $$ /$$__ $$ | $$$$$$$/ /$$__ $$| $$__ $$| $$ /$$__ $$|_ $$_/ | $$__ $$ | $$ | $$| $$ | $$| $$__ $$ | $$ | $$ \ $$| $$$$$$$$ | $$__ $$| $$$$$$$$| $$ \ $$| $$| $$ \__/ | $$ | $$ \ $$ | $$ | $$| $$ | $$| $$ \ $$ | $$ | $$ | $$| $$_____/ | $$ \ $$| $$_____/| $$ | $$| $$| $$ | $$ /$$| $$ | $$ | $$ $$| $$| $$ | $$| $$ | $$ | $$ | $$ | $$| $$$$$$$ | $$ | $$| $$$$$$$| $$$$$$$/| $$| $$ | $$$$/| $$ | $$ | $$$$$$/| $$| $$$$$$/| $$$$$$$/ |__/ |__/ |__/ \_______/ |__/ |__/ \_______/|_______/ |__/|__/ \___/ |__/ |__/ \______/ |__/ \______/ |_______/ */ contract TheRebirthClub is ERC721A, Ownable { UtilToken public Util; /** Maximum mints per TX with UTIL*/ uint256 public constant maxTxUtil = 100; /** Maximum mints per TX with ETHER*/ uint256 public constant maxTxEth = 25; /** Maximum amount of tokens in collection */ uint256 public constant MAX_SUPPLY = 5000; /** Treasury Reserve*/ uint256 public TreasuryReserve = 250; /** Tier 1 Supply*/ uint256 public Tier1 = 1000; /** Tier 2 Supply*/ uint256 public Tier2 = 2000; /** Tier 3 Supply */ uint256 public Tier3 = 3500; /** Tier 4 Supply */ uint256 public Tier4 = 5000; /** Tier 1 UTIL price */ uint256 public Tier1Util = 750 ether; /** Tier 2 UTIL price */ uint256 public Tier2Util = 1000 ether; /** Tier 3 UTIL price */ uint256 public Tier3Util = 1500 ether; /** Tier 4 UTIL price */ uint256 public Tier4Util = 3000 ether; /** Tier 2 ETH price */ uint256 public Tier2ETH = 0.011 ether; /** Tier 3 ETH price */ uint256 public Tier3ETH = 0.022 ether; /** Tier 4 ETH price */ uint256 public Tier4ETH = 0.033 ether; /** Public sale state */ bool public saleActive = true; // // metadata URI string private _baseTokenURI; /** Notify on sale state change */ event SaleStateChanged(bool _val); /** Notify on presale state change */ event PresaleStateChanged(bool _val); /** Notify on total supply change */ event TotalSupplyChanged(uint256 _val); constructor( string memory _name, string memory _symbol, address _Util ) ERC721A(_name, _symbol) { Util = UtilToken(_Util); } /// @notice Gets cost to mint n amount of NFTs, taking account for TreasuryReserve /// @param _numberMinted How many a given wallet has already minted /// @param _numberToMint How many a given wallet is planning to mint /// @param _costPerMint Price of one nft function subtotal( uint256 _numberMinted, uint256 _numberToMint, uint256 _costPerMint ) public pure returns (uint256) { return _numberToMint * _costPerMint - (_numberMinted > 0 ? 0 : _costPerMint); } /// @notice Gets number of NFTs minted for a given wallet /// @param _wallet Wallet to check function numberMinted(address _wallet) external view returns (uint256) { return _numberMinted(_wallet); } /// @notice Sets public sale state /// @param _val New sale state function setSaleState(bool _val) external onlyOwner { saleActive = _val; emit SaleStateChanged(_val); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function UtilMintingCost() public view returns (uint256) { if (totalSupply() <= Tier1) { return Tier1Util; } else if (totalSupply() <= Tier2) { return Tier2Util; } else if (totalSupply() <= Tier3) { return Tier4Util; } else { return Tier4Util; } } // Changes eth mint price based on supply function EthMintingCost() public view returns (uint256) { if (totalSupply() <= Tier1) { return Tier2ETH; } else if (totalSupply() <= Tier2) { return Tier2ETH; } else if (totalSupply() <= Tier3) { return Tier3ETH; } else { return Tier4Util; } } /// @notice Reserves a set of NFTs for collection owner (giveaways, etc) /// @param _amount The amount to reserve function reserve(uint256 _amount) external onlyOwner { require( TreasuryReserve >= _amount, "Cannot exceed TreasuryReserve mint limit." ); TreasuryReserve -= _amount; _mint(msg.sender, _amount); emit TotalSupplyChanged(totalSupply()); } /// @notice Mints a new token in public sale /// @param _amount The number of tokens being minted function mintWithEth(uint256 _amount) external payable { require(saleActive, "Sale is not active."); require( _amount <= maxTxEth, "Amount of tokens exceeds transaction limit." ); require( totalSupply() + _amount <= MAX_SUPPLY, "Amount exceeds supply." ); require(totalSupply() >= Tier1, "Minting with Eth has not started yet"); require( EthMintingCost() * _amount == msg.value, "ETH sent not equal to cost." ); _safeMint(msg.sender, _amount); emit TotalSupplyChanged(totalSupply()); } /// @notice Mints a new token in public sale /// @param _amount The number of tokens being minted function mintWithUtil(uint256 _amount) external payable { require(saleActive, "Sale is not active."); require( _amount <= maxTxUtil, "Amount of tokens exceeds transaction limit." ); require( totalSupply() + _amount <= MAX_SUPPLY, "Amount exceeds supply." ); require( queryUtilOfAddress(msg.sender) >= UtilMintingCost() * _amount, "You need more $UTIL to mint!" ); Util.transferFrom(msg.sender, address(this), UtilMintingCost()* _amount); _safeMint(msg.sender, _amount); emit TotalSupplyChanged(totalSupply()); } /// Query UTIL someone holds function queryUtilOfAddress(address _address) public view returns (uint256) { return Util.balanceOf(_address); } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function transferUtil(address _recipient, uint256 _amount) external onlyOwner { Util.transferFrom(address(this), _recipient, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_Util","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"PresaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_val","type":"uint256"}],"name":"TotalSupplyChanged","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":[],"name":"EthMintingCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier1Util","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier2ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier2Util","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier3ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier3Util","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier4ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tier4Util","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TreasuryReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Util","outputs":[{"internalType":"contract UtilToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UtilMintingCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","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":[],"name":"maxTxEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxUtil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWithEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWithUtil","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"queryUtilOfAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberMinted","type":"uint256"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"},{"internalType":"uint256","name":"_costPerMint","type":"uint256"}],"name":"subtotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferUtil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260fa600a556103e8600b556107d0600c55610dac600d55611388600e556828a857425466f80000600f55683635c9adc5dea00000601055685150ae84a8cdf0000060115568a2a15d09519be000006012556627147114878000601355664e28e2290f000060145566753d533d9680006015556001601660006101000a81548160ff0219169083151502179055503480156200009e57600080fd5b506040516200410f3803806200410f8339818101604052810190620000c4919062000437565b82828160029081620000d791906200071c565b508060039081620000e991906200071c565b50620000fa6200016c60201b60201c565b600081905550505062000122620001166200017160201b60201c565b6200017960201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000803565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002a8826200025d565b810181811067ffffffffffffffff82111715620002ca57620002c96200026e565b5b80604052505050565b6000620002df6200023f565b9050620002ed82826200029d565b919050565b600067ffffffffffffffff82111562000310576200030f6200026e565b5b6200031b826200025d565b9050602081019050919050565b60005b83811015620003485780820151818401526020810190506200032b565b60008484015250505050565b60006200036b6200036584620002f2565b620002d3565b9050828152602081018484840111156200038a576200038962000258565b5b6200039784828562000328565b509392505050565b600082601f830112620003b757620003b662000253565b5b8151620003c984826020860162000354565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ff82620003d2565b9050919050565b6200041181620003f2565b81146200041d57600080fd5b50565b600081519050620004318162000406565b92915050565b60008060006060848603121562000453576200045262000249565b5b600084015167ffffffffffffffff8111156200047457620004736200024e565b5b62000482868287016200039f565b935050602084015167ffffffffffffffff811115620004a657620004a56200024e565b5b620004b4868287016200039f565b9250506040620004c78682870162000420565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052457607f821691505b6020821081036200053a5762000539620004dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000565565b620005b0868362000565565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005fd620005f7620005f184620005c8565b620005d2565b620005c8565b9050919050565b6000819050919050565b6200061983620005dc565b62000631620006288262000604565b84845462000572565b825550505050565b600090565b6200064862000639565b620006558184846200060e565b505050565b5b818110156200067d57620006716000826200063e565b6001810190506200065b565b5050565b601f821115620006cc57620006968162000540565b620006a18462000555565b81016020851015620006b1578190505b620006c9620006c08562000555565b8301826200065a565b50505b505050565b600082821c905092915050565b6000620006f160001984600802620006d1565b1980831691505092915050565b60006200070c8383620006de565b9150826002028217905092915050565b6200072782620004d1565b67ffffffffffffffff8111156200074357620007426200026e565b5b6200074f82546200050b565b6200075c82828562000681565b600060209050601f8311600181146200079457600084156200077f578287015190505b6200078b8582620006fe565b865550620007fb565b601f198416620007a48662000540565b60005b82811015620007ce57848901518255600182019150602085019450602081019050620007a7565b86831015620007ee5784890151620007ea601f891682620006de565b8355505b6001600288020188555050505b505050505050565b6138fc80620008136000396000f3fe60806040526004361061027d5760003560e01c80636e2df1701161014f578063a365f3cc116100c1578063c3d46f701161007a578063c3d46f701461091c578063c4e3709514610947578063c87b56dd14610970578063dc33e681146109ad578063e985e9c5146109ea578063f2fde38b14610a275761027d565b8063a365f3cc1461082b578063a7c13b7c14610856578063ac44600214610893578063b88d4fde146108aa578063ba17d8db146108c6578063bae8da03146108f15761027d565b8063819b25ba11610113578063819b25ba1461072d5780638976f2aa146107565780638da5cb5b1461078157806395d89b41146107ac5780639f658738146107d7578063a22cb465146108025761027d565b80636e2df1701461064857806370a0823114610673578063715018a6146106b057806379c164bf146106c75780637fd8fae9146106f05761027d565b806332cb6b0c116101f35780635d3d9f35116101ac5780635d3d9f351461054357806362734b821461056e5780636352211e1461059957806368428a1b146105d657806368eeb1e6146106015780636a5f777c1461062c5761027d565b806332cb6b0c146104525780634040fa5b1461047d57806340870f8d146104a857806342842e0e146104d35780634a5ffe94146104ef57806355f804b31461051a5761027d565b80630df10da9116102455780630df10da91461036e5780631540c0161461038a57806318160ddd146103b55780632003e76c146103e057806323a41c2a1461040b57806323b872dd146104365761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630b094e3714610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190612707565b610a50565b6040516102b6919061274f565b60405180910390f35b3480156102cb57600080fd5b506102d4610ae2565b6040516102e191906127fa565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612852565b610b74565b60405161031e91906128c0565b60405180910390f35b610341600480360381019061033c9190612907565b610bf3565b005b34801561034f57600080fd5b50610358610d37565b6040516103659190612956565b60405180910390f35b61038860048036038101906103839190612852565b610d3c565b005b34801561039657600080fd5b5061039f610f11565b6040516103ac9190612956565b60405180910390f35b3480156103c157600080fd5b506103ca610f17565b6040516103d79190612956565b60405180910390f35b3480156103ec57600080fd5b506103f5610f2e565b6040516104029190612956565b60405180910390f35b34801561041757600080fd5b50610420610f34565b60405161042d9190612956565b60405180910390f35b610450600480360381019061044b9190612971565b610f3a565b005b34801561045e57600080fd5b5061046761125c565b6040516104749190612956565b60405180910390f35b34801561048957600080fd5b50610492611262565b60405161049f9190612956565b60405180910390f35b3480156104b457600080fd5b506104bd611268565b6040516104ca9190612956565b60405180910390f35b6104ed60048036038101906104e89190612971565b61126e565b005b3480156104fb57600080fd5b5061050461128e565b6040516105119190612956565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612a29565b6112e7565b005b34801561054f57600080fd5b50610558611305565b6040516105659190612956565b60405180910390f35b34801561057a57600080fd5b5061058361130b565b6040516105909190612956565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612852565b611311565b6040516105cd91906128c0565b60405180910390f35b3480156105e257600080fd5b506105eb611323565b6040516105f8919061274f565b60405180910390f35b34801561060d57600080fd5b50610616611336565b6040516106239190612956565b60405180910390f35b61064660048036038101906106419190612852565b61133c565b005b34801561065457600080fd5b5061065d611583565b60405161066a9190612956565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612a76565b611589565b6040516106a79190612956565b60405180910390f35b3480156106bc57600080fd5b506106c5611641565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612907565b611655565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612a76565b611704565b6040516107249190612956565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612852565b6117a9565b005b34801561076257600080fd5b5061076b61185a565b6040516107789190612956565b60405180910390f35b34801561078d57600080fd5b50610796611860565b6040516107a391906128c0565b60405180910390f35b3480156107b857600080fd5b506107c161188a565b6040516107ce91906127fa565b60405180910390f35b3480156107e357600080fd5b506107ec61191c565b6040516107f99190612956565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612acf565b611921565b005b34801561083757600080fd5b50610840611a2c565b60405161084d9190612b6e565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612b89565b611a52565b60405161088a9190612956565b60405180910390f35b34801561089f57600080fd5b506108a8611a83565b005b6108c460048036038101906108bf9190612d0c565b611b3a565b005b3480156108d257600080fd5b506108db611bad565b6040516108e89190612956565b60405180910390f35b3480156108fd57600080fd5b50610906611bb3565b6040516109139190612956565b60405180910390f35b34801561092857600080fd5b50610931611c0c565b60405161093e9190612956565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612d8f565b611c12565b005b34801561097c57600080fd5b5061099760048036038101906109929190612852565b611c6e565b6040516109a491906127fa565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190612a76565b611d0c565b6040516109e19190612956565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190612dbc565b611d1e565b604051610a1e919061274f565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190612a76565b611db2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610af190612e2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90612e2b565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b6000610b7f82611e35565b610bb5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfe82611311565b90508073ffffffffffffffffffffffffffffffffffffffff16610c1f611e94565b73ffffffffffffffffffffffffffffffffffffffff1614610c8257610c4b81610c46611e94565b611d1e565b610c81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b601660009054906101000a900460ff16610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290612ea8565b60405180910390fd5b6019811115610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612f3a565b60405180910390fd5b61138881610ddb610f17565b610de59190612f89565b1115610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613009565b60405180910390fd5b600b54610e31610f17565b1015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e699061309b565b60405180910390fd5b3481610e7c611bb3565b610e8691906130bb565b14610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613149565b60405180910390fd5b610ed03382611e9c565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7610ef9610f17565b604051610f069190612956565b60405180910390a150565b600f5481565b6000610f21611eba565b6001546000540303905090565b60135481565b600d5481565b6000610f4582611ebf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fb884611f8b565b91509150610fce8187610fc9611e94565b611fb2565b61101a57610fe386610fde611e94565b611d1e565b611019576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611080576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108d8686866001611ff6565b801561109857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116685611142888887611ffc565b7c020000000000000000000000000000000000000000000000000000000017612024565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111ec57600060018501905060006004600083815260200190815260200160002054036111ea5760005481146111e9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611254868686600161204f565b505050505050565b61138881565b600b5481565b600e5481565b61128983838360405180602001604052806000815250611b3a565b505050565b6000600b5461129b610f17565b116112aa57600f5490506112e4565b600c546112b5610f17565b116112c45760105490506112e4565b600d546112cf610f17565b116112de5760125490506112e4565b60125490505b90565b6112ef612055565b818160179182611300929190613316565b505050565b60155481565b60115481565b600061131c82611ebf565b9050919050565b601660009054906101000a900460ff1681565b600c5481565b601660009054906101000a900460ff1661138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290612ea8565b60405180910390fd5b60648111156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612f3a565b60405180910390fd5b611388816113db610f17565b6113e59190612f89565b1115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613009565b60405180910390fd5b8061142f61128e565b61143991906130bb565b61144233611704565b1015611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90613432565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846114cc61128e565b6114d691906130bb565b6040518463ffffffff1660e01b81526004016114f493929190613452565b6020604051808303816000875af1158015611513573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611537919061349e565b506115423382611e9c565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f761156b610f17565b6040516115789190612956565b60405180910390a150565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611649612055565b61165360006120d3565b565b61165d612055565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b81526004016116bc93929190613452565b6020604051808303816000875af11580156116db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ff919061349e565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040161176191906128c0565b602060405180830381865afa15801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a291906134e0565b9050919050565b6117b1612055565b80600a5410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061357f565b60405180910390fd5b80600a6000828254611808919061359f565b925050819055506118193382612199565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611842610f17565b60405161184f9190612956565b60405180910390a150565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461189990612e2b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c590612e2b565b80156119125780601f106118e757610100808354040283529160200191611912565b820191906000526020600020905b8154815290600101906020018083116118f557829003601f168201915b5050505050905090565b606481565b806007600061192e611e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119db611e94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a20919061274f565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808411611a615781611a64565b60005b8284611a7091906130bb565b611a7a919061359f565b90509392505050565b611a8b612055565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ab190613604565b60006040518083038185875af1925050503d8060008114611aee576040519150601f19603f3d011682016040523d82523d6000602084013e611af3565b606091505b5050905080611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90613665565b60405180910390fd5b50565b611b45848484610f3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ba757611b7084848484612354565b611ba6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b6000600b54611bc0610f17565b11611bcf576013549050611c09565b600c54611bda610f17565b11611be9576013549050611c09565b600d54611bf4610f17565b11611c03576014549050611c09565b60125490505b90565b600a5481565b611c1a612055565b80601660006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c60281604051611c63919061274f565b60405180910390a150565b6060611c7982611e35565b611caf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611cb96124a4565b90506000815103611cd95760405180602001604052806000815250611d04565b80611ce384612536565b604051602001611cf49291906136c1565b6040516020818303038152906040525b915050919050565b6000611d1782612586565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dba612055565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613757565b60405180910390fd5b611e32816120d3565b50565b600081611e40611eba565b11158015611e4f575060005482105b8015611e8d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611eb68282604051806020016040528060008152506125dd565b5050565b600090565b60008082905080611ece611eba565b11611f5457600054811015611f535760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f51575b60008103611f47576004600083600190039350838152602001908152602001600020549050611f1d565b8092505050611f86565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861201386868461267a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61205d612683565b73ffffffffffffffffffffffffffffffffffffffff1661207b611860565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c8906137c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036121d9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e66000848385611ff6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061225d8361224e6000866000611ffc565b6122578561268b565b17612024565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122fe57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122c3565b5060008203612339576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061234f600084838561204f565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237a611e94565b8786866040518563ffffffff1660e01b815260040161239c9493929190613838565b6020604051808303816000875af19250505080156123d857506040513d601f19601f820116820180604052508101906123d59190613899565b60015b612451573d8060008114612408576040519150601f19603f3d011682016040523d82523d6000602084013e61240d565b606091505b506000815103612449576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601780546124b390612e2b565b80601f01602080910402602001604051908101604052809291908181526020018280546124df90612e2b565b801561252c5780601f106125015761010080835404028352916020019161252c565b820191906000526020600020905b81548152906001019060200180831161250f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561257157600184039350600a81066030018453600a810490508061254f575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6125e78383612199565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267557600080549050600083820390505b6126276000868380600101945086612354565b61265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261457816000541461267257600080fd5b50505b505050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126e4816126af565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b60006020828403121561271d5761271c6126a5565b5b600061272b848285016126f2565b91505092915050565b60008115159050919050565b61274981612734565b82525050565b60006020820190506127646000830184612740565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127a4578082015181840152602081019050612789565b60008484015250505050565b6000601f19601f8301169050919050565b60006127cc8261276a565b6127d68185612775565b93506127e6818560208601612786565b6127ef816127b0565b840191505092915050565b6000602082019050818103600083015261281481846127c1565b905092915050565b6000819050919050565b61282f8161281c565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b600060208284031215612868576128676126a5565b5b60006128768482850161283d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128aa8261287f565b9050919050565b6128ba8161289f565b82525050565b60006020820190506128d560008301846128b1565b92915050565b6128e48161289f565b81146128ef57600080fd5b50565b600081359050612901816128db565b92915050565b6000806040838503121561291e5761291d6126a5565b5b600061292c858286016128f2565b925050602061293d8582860161283d565b9150509250929050565b6129508161281c565b82525050565b600060208201905061296b6000830184612947565b92915050565b60008060006060848603121561298a576129896126a5565b5b6000612998868287016128f2565b93505060206129a9868287016128f2565b92505060406129ba8682870161283d565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129e9576129e86129c4565b5b8235905067ffffffffffffffff811115612a0657612a056129c9565b5b602083019150836001820283011115612a2257612a216129ce565b5b9250929050565b60008060208385031215612a4057612a3f6126a5565b5b600083013567ffffffffffffffff811115612a5e57612a5d6126aa565b5b612a6a858286016129d3565b92509250509250929050565b600060208284031215612a8c57612a8b6126a5565b5b6000612a9a848285016128f2565b91505092915050565b612aac81612734565b8114612ab757600080fd5b50565b600081359050612ac981612aa3565b92915050565b60008060408385031215612ae657612ae56126a5565b5b6000612af4858286016128f2565b9250506020612b0585828601612aba565b9150509250929050565b6000819050919050565b6000612b34612b2f612b2a8461287f565b612b0f565b61287f565b9050919050565b6000612b4682612b19565b9050919050565b6000612b5882612b3b565b9050919050565b612b6881612b4d565b82525050565b6000602082019050612b836000830184612b5f565b92915050565b600080600060608486031215612ba257612ba16126a5565b5b6000612bb08682870161283d565b9350506020612bc18682870161283d565b9250506040612bd28682870161283d565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c19826127b0565b810181811067ffffffffffffffff82111715612c3857612c37612be1565b5b80604052505050565b6000612c4b61269b565b9050612c578282612c10565b919050565b600067ffffffffffffffff821115612c7757612c76612be1565b5b612c80826127b0565b9050602081019050919050565b82818337600083830152505050565b6000612caf612caa84612c5c565b612c41565b905082815260208101848484011115612ccb57612cca612bdc565b5b612cd6848285612c8d565b509392505050565b600082601f830112612cf357612cf26129c4565b5b8135612d03848260208601612c9c565b91505092915050565b60008060008060808587031215612d2657612d256126a5565b5b6000612d34878288016128f2565b9450506020612d45878288016128f2565b9350506040612d568782880161283d565b925050606085013567ffffffffffffffff811115612d7757612d766126aa565b5b612d8387828801612cde565b91505092959194509250565b600060208284031215612da557612da46126a5565b5b6000612db384828501612aba565b91505092915050565b60008060408385031215612dd357612dd26126a5565b5b6000612de1858286016128f2565b9250506020612df2858286016128f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4357607f821691505b602082108103612e5657612e55612dfc565b5b50919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612e92601383612775565b9150612e9d82612e5c565b602082019050919050565b60006020820190508181036000830152612ec181612e85565b9050919050565b7f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360008201527f74696f6e206c696d69742e000000000000000000000000000000000000000000602082015250565b6000612f24602b83612775565b9150612f2f82612ec8565b604082019050919050565b60006020820190508181036000830152612f5381612f17565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f948261281c565b9150612f9f8361281c565b9250828201905080821115612fb757612fb6612f5a565b5b92915050565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b6000612ff3601683612775565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4d696e74696e6720776974682045746820686173206e6f74207374617274656460008201527f2079657400000000000000000000000000000000000000000000000000000000602082015250565b6000613085602483612775565b915061309082613029565b604082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b60006130c68261281c565b91506130d18361281c565b92508282026130df8161281c565b915082820484148315176130f6576130f5612f5a565b5b5092915050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b6000613133601b83612775565b915061313e826130fd565b602082019050919050565b6000602082019050818103600083015261316281613126565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613199565b6131e08683613199565b95508019841693508086168417925050509392505050565b600061321361320e6132098461281c565b612b0f565b61281c565b9050919050565b6000819050919050565b61322d836131f8565b6132416132398261321a565b8484546131a6565b825550505050565b600090565b613256613249565b613261818484613224565b505050565b5b818110156132855761327a60008261324e565b600181019050613267565b5050565b601f8211156132ca5761329b81613174565b6132a484613189565b810160208510156132b3578190505b6132c76132bf85613189565b830182613266565b50505b505050565b600082821c905092915050565b60006132ed600019846008026132cf565b1980831691505092915050565b600061330683836132dc565b9150826002028217905092915050565b6133208383613169565b67ffffffffffffffff81111561333957613338612be1565b5b6133438254612e2b565b61334e828285613289565b6000601f83116001811461337d576000841561336b578287013590505b61337585826132fa565b8655506133dd565b601f19841661338b86613174565b60005b828110156133b35784890135825560018201915060208501945060208101905061338e565b868310156133d057848901356133cc601f8916826132dc565b8355505b6001600288020188555050505b50505050505050565b7f596f75206e656564206d6f726520245554494c20746f206d696e742100000000600082015250565b600061341c601c83612775565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b600060608201905061346760008301866128b1565b61347460208301856128b1565b6134816040830184612947565b949350505050565b60008151905061349881612aa3565b92915050565b6000602082840312156134b4576134b36126a5565b5b60006134c284828501613489565b91505092915050565b6000815190506134da81612826565b92915050565b6000602082840312156134f6576134f56126a5565b5b6000613504848285016134cb565b91505092915050565b7f43616e6e6f742065786365656420547265617375727952657365727665206d6960008201527f6e74206c696d69742e0000000000000000000000000000000000000000000000602082015250565b6000613569602983612775565b91506135748261350d565b604082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b60006135aa8261281c565b91506135b58361281c565b92508282039050818111156135cd576135cc612f5a565b5b92915050565b600081905092915050565b50565b60006135ee6000836135d3565b91506135f9826135de565b600082019050919050565b600061360f826135e1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061364f601083612775565b915061365a82613619565b602082019050919050565b6000602082019050818103600083015261367e81613642565b9050919050565b600081905092915050565b600061369b8261276a565b6136a58185613685565b93506136b5818560208601612786565b80840191505092915050565b60006136cd8285613690565b91506136d98284613690565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613741602683612775565b915061374c826136e5565b604082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ad602083612775565b91506137b882613777565b602082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061380a826137e3565b61381481856137ee565b9350613824818560208601612786565b61382d816127b0565b840191505092915050565b600060808201905061384d60008301876128b1565b61385a60208301866128b1565b6138676040830185612947565b818103606083015261387981846137ff565b905095945050505050565b600081519050613893816126db565b92915050565b6000602082840312156138af576138ae6126a5565b5b60006138bd84828501613884565b9150509291505056fea2646970667358221220c2f76d81cc9e1b961522117756043ef634302ab44839c3e8de609f073daeb2e964736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000644def359b95c0a640196b28d88e5e0de8e4c660000000000000000000000000000000000000000000000000000000000000011546865205265626972746820436c75622000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035452430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80636e2df1701161014f578063a365f3cc116100c1578063c3d46f701161007a578063c3d46f701461091c578063c4e3709514610947578063c87b56dd14610970578063dc33e681146109ad578063e985e9c5146109ea578063f2fde38b14610a275761027d565b8063a365f3cc1461082b578063a7c13b7c14610856578063ac44600214610893578063b88d4fde146108aa578063ba17d8db146108c6578063bae8da03146108f15761027d565b8063819b25ba11610113578063819b25ba1461072d5780638976f2aa146107565780638da5cb5b1461078157806395d89b41146107ac5780639f658738146107d7578063a22cb465146108025761027d565b80636e2df1701461064857806370a0823114610673578063715018a6146106b057806379c164bf146106c75780637fd8fae9146106f05761027d565b806332cb6b0c116101f35780635d3d9f35116101ac5780635d3d9f351461054357806362734b821461056e5780636352211e1461059957806368428a1b146105d657806368eeb1e6146106015780636a5f777c1461062c5761027d565b806332cb6b0c146104525780634040fa5b1461047d57806340870f8d146104a857806342842e0e146104d35780634a5ffe94146104ef57806355f804b31461051a5761027d565b80630df10da9116102455780630df10da91461036e5780631540c0161461038a57806318160ddd146103b55780632003e76c146103e057806323a41c2a1461040b57806323b872dd146104365761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630b094e3714610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190612707565b610a50565b6040516102b6919061274f565b60405180910390f35b3480156102cb57600080fd5b506102d4610ae2565b6040516102e191906127fa565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612852565b610b74565b60405161031e91906128c0565b60405180910390f35b610341600480360381019061033c9190612907565b610bf3565b005b34801561034f57600080fd5b50610358610d37565b6040516103659190612956565b60405180910390f35b61038860048036038101906103839190612852565b610d3c565b005b34801561039657600080fd5b5061039f610f11565b6040516103ac9190612956565b60405180910390f35b3480156103c157600080fd5b506103ca610f17565b6040516103d79190612956565b60405180910390f35b3480156103ec57600080fd5b506103f5610f2e565b6040516104029190612956565b60405180910390f35b34801561041757600080fd5b50610420610f34565b60405161042d9190612956565b60405180910390f35b610450600480360381019061044b9190612971565b610f3a565b005b34801561045e57600080fd5b5061046761125c565b6040516104749190612956565b60405180910390f35b34801561048957600080fd5b50610492611262565b60405161049f9190612956565b60405180910390f35b3480156104b457600080fd5b506104bd611268565b6040516104ca9190612956565b60405180910390f35b6104ed60048036038101906104e89190612971565b61126e565b005b3480156104fb57600080fd5b5061050461128e565b6040516105119190612956565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612a29565b6112e7565b005b34801561054f57600080fd5b50610558611305565b6040516105659190612956565b60405180910390f35b34801561057a57600080fd5b5061058361130b565b6040516105909190612956565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612852565b611311565b6040516105cd91906128c0565b60405180910390f35b3480156105e257600080fd5b506105eb611323565b6040516105f8919061274f565b60405180910390f35b34801561060d57600080fd5b50610616611336565b6040516106239190612956565b60405180910390f35b61064660048036038101906106419190612852565b61133c565b005b34801561065457600080fd5b5061065d611583565b60405161066a9190612956565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612a76565b611589565b6040516106a79190612956565b60405180910390f35b3480156106bc57600080fd5b506106c5611641565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612907565b611655565b005b3480156106fc57600080fd5b5061071760048036038101906107129190612a76565b611704565b6040516107249190612956565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612852565b6117a9565b005b34801561076257600080fd5b5061076b61185a565b6040516107789190612956565b60405180910390f35b34801561078d57600080fd5b50610796611860565b6040516107a391906128c0565b60405180910390f35b3480156107b857600080fd5b506107c161188a565b6040516107ce91906127fa565b60405180910390f35b3480156107e357600080fd5b506107ec61191c565b6040516107f99190612956565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612acf565b611921565b005b34801561083757600080fd5b50610840611a2c565b60405161084d9190612b6e565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612b89565b611a52565b60405161088a9190612956565b60405180910390f35b34801561089f57600080fd5b506108a8611a83565b005b6108c460048036038101906108bf9190612d0c565b611b3a565b005b3480156108d257600080fd5b506108db611bad565b6040516108e89190612956565b60405180910390f35b3480156108fd57600080fd5b50610906611bb3565b6040516109139190612956565b60405180910390f35b34801561092857600080fd5b50610931611c0c565b60405161093e9190612956565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612d8f565b611c12565b005b34801561097c57600080fd5b5061099760048036038101906109929190612852565b611c6e565b6040516109a491906127fa565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190612a76565b611d0c565b6040516109e19190612956565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190612dbc565b611d1e565b604051610a1e919061274f565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190612a76565b611db2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610af190612e2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90612e2b565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b6000610b7f82611e35565b610bb5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfe82611311565b90508073ffffffffffffffffffffffffffffffffffffffff16610c1f611e94565b73ffffffffffffffffffffffffffffffffffffffff1614610c8257610c4b81610c46611e94565b611d1e565b610c81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601981565b601660009054906101000a900460ff16610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290612ea8565b60405180910390fd5b6019811115610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612f3a565b60405180910390fd5b61138881610ddb610f17565b610de59190612f89565b1115610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613009565b60405180910390fd5b600b54610e31610f17565b1015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e699061309b565b60405180910390fd5b3481610e7c611bb3565b610e8691906130bb565b14610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613149565b60405180910390fd5b610ed03382611e9c565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7610ef9610f17565b604051610f069190612956565b60405180910390a150565b600f5481565b6000610f21611eba565b6001546000540303905090565b60135481565b600d5481565b6000610f4582611ebf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fb884611f8b565b91509150610fce8187610fc9611e94565b611fb2565b61101a57610fe386610fde611e94565b611d1e565b611019576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611080576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108d8686866001611ff6565b801561109857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116685611142888887611ffc565b7c020000000000000000000000000000000000000000000000000000000017612024565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111ec57600060018501905060006004600083815260200190815260200160002054036111ea5760005481146111e9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611254868686600161204f565b505050505050565b61138881565b600b5481565b600e5481565b61128983838360405180602001604052806000815250611b3a565b505050565b6000600b5461129b610f17565b116112aa57600f5490506112e4565b600c546112b5610f17565b116112c45760105490506112e4565b600d546112cf610f17565b116112de5760125490506112e4565b60125490505b90565b6112ef612055565b818160179182611300929190613316565b505050565b60155481565b60115481565b600061131c82611ebf565b9050919050565b601660009054906101000a900460ff1681565b600c5481565b601660009054906101000a900460ff1661138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290612ea8565b60405180910390fd5b60648111156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612f3a565b60405180910390fd5b611388816113db610f17565b6113e59190612f89565b1115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613009565b60405180910390fd5b8061142f61128e565b61143991906130bb565b61144233611704565b1015611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90613432565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846114cc61128e565b6114d691906130bb565b6040518463ffffffff1660e01b81526004016114f493929190613452565b6020604051808303816000875af1158015611513573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611537919061349e565b506115423382611e9c565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f761156b610f17565b6040516115789190612956565b60405180910390a150565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611649612055565b61165360006120d3565b565b61165d612055565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b81526004016116bc93929190613452565b6020604051808303816000875af11580156116db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ff919061349e565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040161176191906128c0565b602060405180830381865afa15801561177e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117a291906134e0565b9050919050565b6117b1612055565b80600a5410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061357f565b60405180910390fd5b80600a6000828254611808919061359f565b925050819055506118193382612199565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611842610f17565b60405161184f9190612956565b60405180910390a150565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461189990612e2b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c590612e2b565b80156119125780601f106118e757610100808354040283529160200191611912565b820191906000526020600020905b8154815290600101906020018083116118f557829003601f168201915b5050505050905090565b606481565b806007600061192e611e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119db611e94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a20919061274f565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808411611a615781611a64565b60005b8284611a7091906130bb565b611a7a919061359f565b90509392505050565b611a8b612055565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ab190613604565b60006040518083038185875af1925050503d8060008114611aee576040519150601f19603f3d011682016040523d82523d6000602084013e611af3565b606091505b5050905080611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90613665565b60405180910390fd5b50565b611b45848484610f3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ba757611b7084848484612354565b611ba6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b6000600b54611bc0610f17565b11611bcf576013549050611c09565b600c54611bda610f17565b11611be9576013549050611c09565b600d54611bf4610f17565b11611c03576014549050611c09565b60125490505b90565b600a5481565b611c1a612055565b80601660006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c60281604051611c63919061274f565b60405180910390a150565b6060611c7982611e35565b611caf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611cb96124a4565b90506000815103611cd95760405180602001604052806000815250611d04565b80611ce384612536565b604051602001611cf49291906136c1565b6040516020818303038152906040525b915050919050565b6000611d1782612586565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dba612055565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613757565b60405180910390fd5b611e32816120d3565b50565b600081611e40611eba565b11158015611e4f575060005482105b8015611e8d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611eb68282604051806020016040528060008152506125dd565b5050565b600090565b60008082905080611ece611eba565b11611f5457600054811015611f535760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f51575b60008103611f47576004600083600190039350838152602001908152602001600020549050611f1d565b8092505050611f86565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861201386868461267a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61205d612683565b73ffffffffffffffffffffffffffffffffffffffff1661207b611860565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c8906137c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036121d9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e66000848385611ff6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061225d8361224e6000866000611ffc565b6122578561268b565b17612024565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122fe57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122c3565b5060008203612339576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061234f600084838561204f565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237a611e94565b8786866040518563ffffffff1660e01b815260040161239c9493929190613838565b6020604051808303816000875af19250505080156123d857506040513d601f19601f820116820180604052508101906123d59190613899565b60015b612451573d8060008114612408576040519150601f19603f3d011682016040523d82523d6000602084013e61240d565b606091505b506000815103612449576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601780546124b390612e2b565b80601f01602080910402602001604051908101604052809291908181526020018280546124df90612e2b565b801561252c5780601f106125015761010080835404028352916020019161252c565b820191906000526020600020905b81548152906001019060200180831161250f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561257157600184039350600a81066030018453600a810490508061254f575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6125e78383612199565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267557600080549050600083820390505b6126276000868380600101945086612354565b61265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261457816000541461267257600080fd5b50505b505050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126e4816126af565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b60006020828403121561271d5761271c6126a5565b5b600061272b848285016126f2565b91505092915050565b60008115159050919050565b61274981612734565b82525050565b60006020820190506127646000830184612740565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127a4578082015181840152602081019050612789565b60008484015250505050565b6000601f19601f8301169050919050565b60006127cc8261276a565b6127d68185612775565b93506127e6818560208601612786565b6127ef816127b0565b840191505092915050565b6000602082019050818103600083015261281481846127c1565b905092915050565b6000819050919050565b61282f8161281c565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b600060208284031215612868576128676126a5565b5b60006128768482850161283d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128aa8261287f565b9050919050565b6128ba8161289f565b82525050565b60006020820190506128d560008301846128b1565b92915050565b6128e48161289f565b81146128ef57600080fd5b50565b600081359050612901816128db565b92915050565b6000806040838503121561291e5761291d6126a5565b5b600061292c858286016128f2565b925050602061293d8582860161283d565b9150509250929050565b6129508161281c565b82525050565b600060208201905061296b6000830184612947565b92915050565b60008060006060848603121561298a576129896126a5565b5b6000612998868287016128f2565b93505060206129a9868287016128f2565b92505060406129ba8682870161283d565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129e9576129e86129c4565b5b8235905067ffffffffffffffff811115612a0657612a056129c9565b5b602083019150836001820283011115612a2257612a216129ce565b5b9250929050565b60008060208385031215612a4057612a3f6126a5565b5b600083013567ffffffffffffffff811115612a5e57612a5d6126aa565b5b612a6a858286016129d3565b92509250509250929050565b600060208284031215612a8c57612a8b6126a5565b5b6000612a9a848285016128f2565b91505092915050565b612aac81612734565b8114612ab757600080fd5b50565b600081359050612ac981612aa3565b92915050565b60008060408385031215612ae657612ae56126a5565b5b6000612af4858286016128f2565b9250506020612b0585828601612aba565b9150509250929050565b6000819050919050565b6000612b34612b2f612b2a8461287f565b612b0f565b61287f565b9050919050565b6000612b4682612b19565b9050919050565b6000612b5882612b3b565b9050919050565b612b6881612b4d565b82525050565b6000602082019050612b836000830184612b5f565b92915050565b600080600060608486031215612ba257612ba16126a5565b5b6000612bb08682870161283d565b9350506020612bc18682870161283d565b9250506040612bd28682870161283d565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c19826127b0565b810181811067ffffffffffffffff82111715612c3857612c37612be1565b5b80604052505050565b6000612c4b61269b565b9050612c578282612c10565b919050565b600067ffffffffffffffff821115612c7757612c76612be1565b5b612c80826127b0565b9050602081019050919050565b82818337600083830152505050565b6000612caf612caa84612c5c565b612c41565b905082815260208101848484011115612ccb57612cca612bdc565b5b612cd6848285612c8d565b509392505050565b600082601f830112612cf357612cf26129c4565b5b8135612d03848260208601612c9c565b91505092915050565b60008060008060808587031215612d2657612d256126a5565b5b6000612d34878288016128f2565b9450506020612d45878288016128f2565b9350506040612d568782880161283d565b925050606085013567ffffffffffffffff811115612d7757612d766126aa565b5b612d8387828801612cde565b91505092959194509250565b600060208284031215612da557612da46126a5565b5b6000612db384828501612aba565b91505092915050565b60008060408385031215612dd357612dd26126a5565b5b6000612de1858286016128f2565b9250506020612df2858286016128f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4357607f821691505b602082108103612e5657612e55612dfc565b5b50919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612e92601383612775565b9150612e9d82612e5c565b602082019050919050565b60006020820190508181036000830152612ec181612e85565b9050919050565b7f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360008201527f74696f6e206c696d69742e000000000000000000000000000000000000000000602082015250565b6000612f24602b83612775565b9150612f2f82612ec8565b604082019050919050565b60006020820190508181036000830152612f5381612f17565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f948261281c565b9150612f9f8361281c565b9250828201905080821115612fb757612fb6612f5a565b5b92915050565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b6000612ff3601683612775565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4d696e74696e6720776974682045746820686173206e6f74207374617274656460008201527f2079657400000000000000000000000000000000000000000000000000000000602082015250565b6000613085602483612775565b915061309082613029565b604082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b60006130c68261281c565b91506130d18361281c565b92508282026130df8161281c565b915082820484148315176130f6576130f5612f5a565b5b5092915050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b6000613133601b83612775565b915061313e826130fd565b602082019050919050565b6000602082019050818103600083015261316281613126565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613199565b6131e08683613199565b95508019841693508086168417925050509392505050565b600061321361320e6132098461281c565b612b0f565b61281c565b9050919050565b6000819050919050565b61322d836131f8565b6132416132398261321a565b8484546131a6565b825550505050565b600090565b613256613249565b613261818484613224565b505050565b5b818110156132855761327a60008261324e565b600181019050613267565b5050565b601f8211156132ca5761329b81613174565b6132a484613189565b810160208510156132b3578190505b6132c76132bf85613189565b830182613266565b50505b505050565b600082821c905092915050565b60006132ed600019846008026132cf565b1980831691505092915050565b600061330683836132dc565b9150826002028217905092915050565b6133208383613169565b67ffffffffffffffff81111561333957613338612be1565b5b6133438254612e2b565b61334e828285613289565b6000601f83116001811461337d576000841561336b578287013590505b61337585826132fa565b8655506133dd565b601f19841661338b86613174565b60005b828110156133b35784890135825560018201915060208501945060208101905061338e565b868310156133d057848901356133cc601f8916826132dc565b8355505b6001600288020188555050505b50505050505050565b7f596f75206e656564206d6f726520245554494c20746f206d696e742100000000600082015250565b600061341c601c83612775565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b600060608201905061346760008301866128b1565b61347460208301856128b1565b6134816040830184612947565b949350505050565b60008151905061349881612aa3565b92915050565b6000602082840312156134b4576134b36126a5565b5b60006134c284828501613489565b91505092915050565b6000815190506134da81612826565b92915050565b6000602082840312156134f6576134f56126a5565b5b6000613504848285016134cb565b91505092915050565b7f43616e6e6f742065786365656420547265617375727952657365727665206d6960008201527f6e74206c696d69742e0000000000000000000000000000000000000000000000602082015250565b6000613569602983612775565b91506135748261350d565b604082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b60006135aa8261281c565b91506135b58361281c565b92508282039050818111156135cd576135cc612f5a565b5b92915050565b600081905092915050565b50565b60006135ee6000836135d3565b91506135f9826135de565b600082019050919050565b600061360f826135e1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061364f601083612775565b915061365a82613619565b602082019050919050565b6000602082019050818103600083015261367e81613642565b9050919050565b600081905092915050565b600061369b8261276a565b6136a58185613685565b93506136b5818560208601612786565b80840191505092915050565b60006136cd8285613690565b91506136d98284613690565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613741602683612775565b915061374c826136e5565b604082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ad602083612775565b91506137b882613777565b602082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061380a826137e3565b61381481856137ee565b9350613824818560208601612786565b61382d816127b0565b840191505092915050565b600060808201905061384d60008301876128b1565b61385a60208301866128b1565b6138676040830185612947565b818103606083015261387981846137ff565b905095945050505050565b600081519050613893816126db565b92915050565b6000602082840312156138af576138ae6126a5565b5b60006138bd84828501613884565b9150509291505056fea2646970667358221220c2f76d81cc9e1b961522117756043ef634302ab44839c3e8de609f073daeb2e964736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000644def359b95c0a640196b28d88e5e0de8e4c660000000000000000000000000000000000000000000000000000000000000011546865205265626972746820436c75622000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035452430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): The Rebirth Club
Arg [1] : _symbol (string): TRC
Arg [2] : _Util (address): 0x0644def359B95c0a640196B28D88e5E0DE8e4C66
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000644def359b95c0a640196b28d88e5e0de8e4c66
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 546865205265626972746820436c756220000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5452430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
67740:6319:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33061:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33963:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40454:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39887:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67952:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72046:662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68438:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29714:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68734:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68312:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44093:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68047:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68193:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68372;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47014:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70736:349;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70622:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68880:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68585;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35356:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68954:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68252:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72824:688;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68807:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30898:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10042:103;;;;;;;;;;;;;:::i;:::-;;73906:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73554:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71616:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68659:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9394:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34139:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67863:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41012:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67791:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69768:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73720:178;;;;;;;;;;;;;:::i;:::-;;47805:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68511:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71140:344;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68125:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70366:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34349:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70163:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41403:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10300:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33061:639;33146:4;33485:10;33470:25;;:11;:25;;;;:102;;;;33562:10;33547:25;;:11;:25;;;;33470:102;:179;;;;33639:10;33624:25;;:11;:25;;;;33470:179;33450:199;;33061:639;;;:::o;33963:100::-;34017:13;34050:5;34043:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33963:100;:::o;40454:218::-;40530:7;40555:16;40563:7;40555;:16::i;:::-;40550:64;;40580:34;;;;;;;;;;;;;;40550:64;40634:15;:24;40650:7;40634:24;;;;;;;;;;;:30;;;;;;;;;;;;40627:37;;40454:218;;;:::o;39887:408::-;39976:13;39992:16;40000:7;39992;:16::i;:::-;39976:32;;40048:5;40025:28;;:19;:17;:19::i;:::-;:28;;;40021:175;;40073:44;40090:5;40097:19;:17;:19::i;:::-;40073:16;:44::i;:::-;40068:128;;40145:35;;;;;;;;;;;;;;40068:128;40021:175;40241:2;40208:15;:24;40224:7;40208:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40279:7;40275:2;40259:28;;40268:5;40259:28;;;;;;;;;;;;39965:330;39887:408;;:::o;67952:37::-;67987:2;67952:37;:::o;72046:662::-;72120:10;;;;;;;;;;;72112:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;67987:2;72187:7;:19;;72165:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;68084:4;72326:7;72310:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;72288:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;72433:5;;72416:13;:11;:13::i;:::-;:22;;72408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;72542:9;72531:7;72512:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:39;72490:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;72619:30;72629:10;72641:7;72619:9;:30::i;:::-;72667:33;72686:13;:11;:13::i;:::-;72667:33;;;;;;:::i;:::-;;;;;;;;72046:662;:::o;68438:36::-;;;;:::o;29714:323::-;29775:7;30003:15;:13;:15::i;:::-;29988:12;;29972:13;;:28;:46;29965:53;;29714:323;:::o;68734:37::-;;;;:::o;68312:27::-;;;;:::o;44093:2825::-;44235:27;44265;44284:7;44265:18;:27::i;:::-;44235:57;;44350:4;44309:45;;44325:19;44309:45;;;44305:86;;44363:28;;;;;;;;;;;;;;44305:86;44405:27;44434:23;44461:35;44488:7;44461:26;:35::i;:::-;44404:92;;;;44596:68;44621:15;44638:4;44644:19;:17;:19::i;:::-;44596:24;:68::i;:::-;44591:180;;44684:43;44701:4;44707:19;:17;:19::i;:::-;44684:16;:43::i;:::-;44679:92;;44736:35;;;;;;;;;;;;;;44679:92;44591:180;44802:1;44788:16;;:2;:16;;;44784:52;;44813:23;;;;;;;;;;;;;;44784:52;44849:43;44871:4;44877:2;44881:7;44890:1;44849:21;:43::i;:::-;44985:15;44982:160;;;45125:1;45104:19;45097:30;44982:160;45522:18;:24;45541:4;45522:24;;;;;;;;;;;;;;;;45520:26;;;;;;;;;;;;45591:18;:22;45610:2;45591:22;;;;;;;;;;;;;;;;45589:24;;;;;;;;;;;45913:146;45950:2;45999:45;46014:4;46020:2;46024:19;45999:14;:45::i;:::-;26113:8;45971:73;45913:18;:146::i;:::-;45884:17;:26;45902:7;45884:26;;;;;;;;;;;:175;;;;46230:1;26113:8;46179:19;:47;:52;46175:627;;46252:19;46284:1;46274:7;:11;46252:33;;46441:1;46407:17;:30;46425:11;46407:30;;;;;;;;;;;;:35;46403:384;;46545:13;;46530:11;:28;46526:242;;46725:19;46692:17;:30;46710:11;46692:30;;;;;;;;;;;:52;;;;46526:242;46403:384;46233:569;46175:627;46849:7;46845:2;46830:27;;46839:4;46830:27;;;;;;;;;;;;46868:42;46889:4;46895:2;46899:7;46908:1;46868:20;:42::i;:::-;44224:2694;;;44093:2825;;;:::o;68047:41::-;68084:4;68047:41;:::o;68193:27::-;;;;:::o;68372:::-;;;;:::o;47014:193::-;47160:39;47177:4;47183:2;47187:7;47160:39;;;;;;;;;;;;:16;:39::i;:::-;47014:193;;;:::o;70736:349::-;70784:7;70825:5;;70808:13;:11;:13::i;:::-;:22;70804:274;;70854:9;;70847:16;;;;70804:274;70902:5;;70885:13;:11;:13::i;:::-;:22;70881:197;;70931:9;;70924:16;;;;70881:197;70979:5;;70962:13;:11;:13::i;:::-;:22;70958:120;;71008:9;;71001:16;;;;70958:120;71057:9;;71050:16;;70736:349;;:::o;70622:106::-;9280:13;:11;:13::i;:::-;70713:7:::1;;70697:13;:23;;;;;;;:::i;:::-;;70622:106:::0;;:::o;68880:37::-;;;;:::o;68585:::-;;;;:::o;35356:152::-;35428:7;35471:27;35490:7;35471:18;:27::i;:::-;35448:52;;35356:152;;;:::o;68954:29::-;;;;;;;;;;;;;:::o;68252:27::-;;;;:::o;72824:688::-;72899:10;;;;;;;;;;;72891:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;67899:3;72966:7;:20;;72944:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;68084:4;73106:7;73090:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;73068:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;73264:7;73244:17;:15;:17::i;:::-;:27;;;;:::i;:::-;73210:30;73229:10;73210:18;:30::i;:::-;:61;;73188:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;73338:4;;;;;;;;;;;:17;;;73356:10;73376:4;73402:7;73383:17;:15;:17::i;:::-;:26;;;;:::i;:::-;73338:72;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73423:30;73433:10;73445:7;73423:9;:30::i;:::-;73471:33;73490:13;:11;:13::i;:::-;73471:33;;;;;;:::i;:::-;;;;;;;;72824:688;:::o;68807:37::-;;;;:::o;30898:233::-;30970:7;31011:1;30994:19;;:5;:19;;;30990:60;;31022:28;;;;;;;;;;;;;;30990:60;25057:13;31068:18;:25;31087:5;31068:25;;;;;;;;;;;;;;;;:55;31061:62;;30898:233;;;:::o;10042:103::-;9280:13;:11;:13::i;:::-;10107:30:::1;10134:1;10107:18;:30::i;:::-;10042:103::o:0;73906:150::-;9280:13;:11;:13::i;:::-;73995:4:::1;;;;;;;;;;;:17;;;74021:4;74028:10;74040:7;73995:53;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73906:150:::0;;:::o;73554:158::-;73648:7;73680:4;;;;;;;;;;;:14;;;73695:8;73680:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73673:31;;73554:158;;;:::o;71616:314::-;9280:13;:11;:13::i;:::-;71721:7:::1;71702:15;;:26;;71680:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;71827:7;71808:15;;:26;;;;;;;:::i;:::-;;;;;;;;71845;71851:10;71863:7;71845:5;:26::i;:::-;71889:33;71908:13;:11;:13::i;:::-;71889:33;;;;;;:::i;:::-;;;;;;;;71616:314:::0;:::o;68659:37::-;;;;:::o;9394:87::-;9440:7;9467:6;;;;;;;;;;;9460:13;;9394:87;:::o;34139:104::-;34195:13;34228:7;34221:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34139:104;:::o;67863:39::-;67899:3;67863:39;:::o;41012:234::-;41159:8;41107:18;:39;41126:19;:17;:19::i;:::-;41107:39;;;;;;;;;;;;;;;:49;41147:8;41107:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41219:8;41183:55;;41198:19;:17;:19::i;:::-;41183:55;;;41229:8;41183:55;;;;;;:::i;:::-;;;;;;;;41012:234;;:::o;67791:21::-;;;;;;;;;;;;;:::o;69768:284::-;69909:7;70023:1;70007:13;:17;:36;;70031:12;70007:36;;;70027:1;70007:36;69978:12;69949:13;:41;;;;:::i;:::-;:95;;;;:::i;:::-;69929:115;;69768:284;;;;;:::o;73720:178::-;9280:13;:11;:13::i;:::-;73776:12:::1;73794:10;:15;;73817:21;73794:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73775:68;;;73862:7;73854:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;73764:134;73720:178::o:0;47805:407::-;47980:31;47993:4;47999:2;48003:7;47980:12;:31::i;:::-;48044:1;48026:2;:14;;;:19;48022:183;;48065:56;48096:4;48102:2;48106:7;48115:5;48065:30;:56::i;:::-;48060:145;;48149:40;;;;;;;;;;;;;;48060:145;48022:183;47805:407;;;;:::o;68511:37::-;;;;:::o;71140:344::-;71187:7;71227:5;;71210:13;:11;:13::i;:::-;:22;71206:271;;71256:8;;71249:15;;;;71206:271;71303:5;;71286:13;:11;:13::i;:::-;:22;71282:195;;71332:8;;71325:15;;;;71282:195;71379:5;;71362:13;:11;:13::i;:::-;:22;71358:119;;71408:8;;71401:15;;;;71358:119;71456:9;;71449:16;;71140:344;;:::o;68125:36::-;;;;:::o;70366:126::-;9280:13;:11;:13::i;:::-;70442:4:::1;70429:10;;:17;;;;;;;;;;;;;;;;;;70462:22;70479:4;70462:22;;;;;;:::i;:::-;;;;;;;;70366:126:::0;:::o;34349:318::-;34422:13;34453:16;34461:7;34453;:16::i;:::-;34448:59;;34478:29;;;;;;;;;;;;;;34448:59;34520:21;34544:10;:8;:10::i;:::-;34520:34;;34597:1;34578:7;34572:21;:26;:87;;;;;;;;;;;;;;;;;34625:7;34634:18;34644:7;34634:9;:18::i;:::-;34608:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34572:87;34565:94;;;34349:318;;;:::o;70163:119::-;70225:7;70252:22;70266:7;70252:13;:22::i;:::-;70245:29;;70163:119;;;:::o;41403:164::-;41500:4;41524:18;:25;41543:5;41524:25;;;;;;;;;;;;;;;:35;41550:8;41524:35;;;;;;;;;;;;;;;;;;;;;;;;;41517:42;;41403:164;;;;:::o;10300:201::-;9280:13;:11;:13::i;:::-;10409:1:::1;10389:22;;:8;:22;;::::0;10381:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10465:28;10484:8;10465:18;:28::i;:::-;10300:201:::0;:::o;41825:282::-;41890:4;41946:7;41927:15;:13;:15::i;:::-;:26;;:66;;;;;41980:13;;41970:7;:23;41927:66;:153;;;;;42079:1;25833:8;42031:17;:26;42049:7;42031:26;;;;;;;;;;;;:44;:49;41927:153;41907:173;;41825:282;;;:::o;64133:105::-;64193:7;64220:10;64213:17;;64133:105;:::o;57965:112::-;58042:27;58052:2;58056:8;58042:27;;;;;;;;;;;;:9;:27::i;:::-;57965:112;;:::o;29230:92::-;29286:7;29230:92;:::o;36511:1275::-;36578:7;36598:12;36613:7;36598:22;;36681:4;36662:15;:13;:15::i;:::-;:23;36658:1061;;36715:13;;36708:4;:20;36704:1015;;;36753:14;36770:17;:23;36788:4;36770:23;;;;;;;;;;;;36753:40;;36887:1;25833:8;36859:6;:24;:29;36855:845;;37524:113;37541:1;37531:6;:11;37524:113;;37584:17;:25;37602:6;;;;;;;37584:25;;;;;;;;;;;;37575:34;;37524:113;;;37670:6;37663:13;;;;;;36855:845;36730:989;36704:1015;36658:1061;37747:31;;;;;;;;;;;;;;36511:1275;;;;:::o;42988:485::-;43090:27;43119:23;43160:38;43201:15;:24;43217:7;43201:24;;;;;;;;;;;43160:65;;43378:18;43355:41;;43435:19;43429:26;43410:45;;43340:126;42988:485;;;:::o;42216:659::-;42365:11;42530:16;42523:5;42519:28;42510:37;;42690:16;42679:9;42675:32;42662:45;;42840:15;42829:9;42826:30;42818:5;42807:9;42804:20;42801:56;42791:66;;42216:659;;;;;:::o;48874:159::-;;;;;:::o;63442:311::-;63577:7;63597:16;26237:3;63623:19;:41;;63597:68;;26237:3;63691:31;63702:4;63708:2;63712:9;63691:10;:31::i;:::-;63683:40;;:62;;63676:69;;;63442:311;;;;;:::o;38334:450::-;38414:14;38582:16;38575:5;38571:28;38562:37;;38759:5;38745:11;38720:23;38716:41;38713:52;38706:5;38703:63;38693:73;;38334:450;;;;:::o;49698:158::-;;;;;:::o;9559:132::-;9634:12;:10;:12::i;:::-;9623:23;;:7;:5;:7::i;:::-;:23;;;9615:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9559:132::o;10661:191::-;10735:16;10754:6;;;;;;;;;;;10735:25;;10780:8;10771:6;;:17;;;;;;;;;;;;;;;;;;10835:8;10804:40;;10825:8;10804:40;;;;;;;;;;;;10724:128;10661:191;:::o;51474:2966::-;51547:20;51570:13;;51547:36;;51610:1;51598:8;:13;51594:44;;51620:18;;;;;;;;;;;;;;51594:44;51651:61;51681:1;51685:2;51689:12;51703:8;51651:21;:61::i;:::-;52195:1;25195:2;52165:1;:26;;52164:32;52152:8;:45;52126:18;:22;52145:2;52126:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52474:139;52511:2;52565:33;52588:1;52592:2;52596:1;52565:14;:33::i;:::-;52532:30;52553:8;52532:20;:30::i;:::-;:66;52474:18;:139::i;:::-;52440:17;:31;52458:12;52440:31;;;;;;;;;;;:173;;;;52630:16;52661:11;52690:8;52675:12;:23;52661:37;;53211:16;53207:2;53203:25;53191:37;;53583:12;53543:8;53502:1;53440:25;53381:1;53320;53293:335;53954:1;53940:12;53936:20;53894:346;53995:3;53986:7;53983:16;53894:346;;54213:7;54203:8;54200:1;54173:25;54170:1;54167;54162:59;54048:1;54039:7;54035:15;54024:26;;53894:346;;;53898:77;54285:1;54273:8;:13;54269:45;;54295:19;;;;;;;;;;;;;;54269:45;54347:3;54331:13;:19;;;;51900:2462;;54372:60;54401:1;54405:2;54409:12;54423:8;54372:20;:60::i;:::-;51536:2904;51474:2966;;:::o;50296:716::-;50459:4;50505:2;50480:45;;;50526:19;:17;:19::i;:::-;50547:4;50553:7;50562:5;50480:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50476:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50780:1;50763:6;:13;:18;50759:235;;50809:40;;;;;;;;;;;;;;50759:235;50952:6;50946:13;50937:6;50933:2;50929:15;50922:38;50476:529;50649:54;;;50639:64;;;:6;:64;;;;50632:71;;;50296:716;;;;;;:::o;70500:114::-;70560:13;70593;70586:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70500:114;:::o;64340:1745::-;64405:17;64839:4;64832;64826:11;64822:22;64931:1;64925:4;64918:15;65006:4;65003:1;64999:12;64992:19;;65088:1;65083:3;65076:14;65192:3;65431:5;65413:428;65439:1;65413:428;;;65479:1;65474:3;65470:11;65463:18;;65650:2;65644:4;65640:13;65636:2;65632:22;65627:3;65619:36;65744:2;65738:4;65734:13;65726:21;;65811:4;65413:428;65801:25;65413:428;65417:21;65880:3;65875;65871:13;65995:4;65990:3;65986:14;65979:21;;66060:6;66055:3;66048:19;64444:1634;;;64340:1745;;;:::o;31213:178::-;31274:7;25057:13;25195:2;31302:18;:25;31321:5;31302:25;;;;;;;;;;;;;;;;:50;;31301:82;31294:89;;31213:178;;;:::o;57192:689::-;57323:19;57329:2;57333:8;57323:5;:19::i;:::-;57402:1;57384:2;:14;;;:19;57380:483;;57424:11;57438:13;;57424:27;;57470:13;57492:8;57486:3;:14;57470:30;;57519:233;57550:62;57589:1;57593:2;57597:7;;;;;;57606:5;57550:30;:62::i;:::-;57545:167;;57648:40;;;;;;;;;;;;;;57545:167;57747:3;57739:5;:11;57519:233;;57834:3;57817:13;;:20;57813:34;;57839:8;;;57813:34;57405:458;;57380:483;57192:689;;;:::o;63143:147::-;63280:6;63143:147;;;;;:::o;7945:98::-;7998:7;8025:10;8018:17;;7945:98;:::o;38886:324::-;38956:14;39189:1;39179:8;39176:15;39150:24;39146:46;39136:56;;38886:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:60::-;8442:3;8463:5;8456:12;;8414:60;;;:::o;8480:142::-;8530:9;8563:53;8581:34;8590:24;8608:5;8590:24;:::i;:::-;8581:34;:::i;:::-;8563:53;:::i;:::-;8550:66;;8480:142;;;:::o;8628:126::-;8678:9;8711:37;8742:5;8711:37;:::i;:::-;8698:50;;8628:126;;;:::o;8760:143::-;8827:9;8860:37;8891:5;8860:37;:::i;:::-;8847:50;;8760:143;;;:::o;8909:165::-;9013:54;9061:5;9013:54;:::i;:::-;9008:3;9001:67;8909:165;;:::o;9080:256::-;9190:4;9228:2;9217:9;9213:18;9205:26;;9241:88;9326:1;9315:9;9311:17;9302:6;9241:88;:::i;:::-;9080:256;;;;:::o;9342:619::-;9419:6;9427;9435;9484:2;9472:9;9463:7;9459:23;9455:32;9452:119;;;9490:79;;:::i;:::-;9452:119;9610:1;9635:53;9680:7;9671:6;9660:9;9656:22;9635:53;:::i;:::-;9625:63;;9581:117;9737:2;9763:53;9808:7;9799:6;9788:9;9784:22;9763:53;:::i;:::-;9753:63;;9708:118;9865:2;9891:53;9936:7;9927:6;9916:9;9912:22;9891:53;:::i;:::-;9881:63;;9836:118;9342:619;;;;;:::o;9967:117::-;10076:1;10073;10066:12;10090:180;10138:77;10135:1;10128:88;10235:4;10232:1;10225:15;10259:4;10256:1;10249:15;10276:281;10359:27;10381:4;10359:27;:::i;:::-;10351:6;10347:40;10489:6;10477:10;10474:22;10453:18;10441:10;10438:34;10435:62;10432:88;;;10500:18;;:::i;:::-;10432:88;10540:10;10536:2;10529:22;10319:238;10276:281;;:::o;10563:129::-;10597:6;10624:20;;:::i;:::-;10614:30;;10653:33;10681:4;10673:6;10653:33;:::i;:::-;10563:129;;;:::o;10698:307::-;10759:4;10849:18;10841:6;10838:30;10835:56;;;10871:18;;:::i;:::-;10835:56;10909:29;10931:6;10909:29;:::i;:::-;10901:37;;10993:4;10987;10983:15;10975:23;;10698:307;;;:::o;11011:146::-;11108:6;11103:3;11098;11085:30;11149:1;11140:6;11135:3;11131:16;11124:27;11011:146;;;:::o;11163:423::-;11240:5;11265:65;11281:48;11322:6;11281:48;:::i;:::-;11265:65;:::i;:::-;11256:74;;11353:6;11346:5;11339:21;11391:4;11384:5;11380:16;11429:3;11420:6;11415:3;11411:16;11408:25;11405:112;;;11436:79;;:::i;:::-;11405:112;11526:54;11573:6;11568:3;11563;11526:54;:::i;:::-;11246:340;11163:423;;;;;:::o;11605:338::-;11660:5;11709:3;11702:4;11694:6;11690:17;11686:27;11676:122;;11717:79;;:::i;:::-;11676:122;11834:6;11821:20;11859:78;11933:3;11925:6;11918:4;11910:6;11906:17;11859:78;:::i;:::-;11850:87;;11666:277;11605:338;;;;:::o;11949:943::-;12044:6;12052;12060;12068;12117:3;12105:9;12096:7;12092:23;12088:33;12085:120;;;12124:79;;:::i;:::-;12085:120;12244:1;12269:53;12314:7;12305:6;12294:9;12290:22;12269:53;:::i;:::-;12259:63;;12215:117;12371:2;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12342:118;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12655:2;12644:9;12640:18;12627:32;12686:18;12678:6;12675:30;12672:117;;;12708:79;;:::i;:::-;12672:117;12813:62;12867:7;12858:6;12847:9;12843:22;12813:62;:::i;:::-;12803:72;;12598:287;11949:943;;;;;;;:::o;12898:323::-;12954:6;13003:2;12991:9;12982:7;12978:23;12974:32;12971:119;;;13009:79;;:::i;:::-;12971:119;13129:1;13154:50;13196:7;13187:6;13176:9;13172:22;13154:50;:::i;:::-;13144:60;;13100:114;12898:323;;;;:::o;13227:474::-;13295:6;13303;13352:2;13340:9;13331:7;13327:23;13323:32;13320:119;;;13358:79;;:::i;:::-;13320:119;13478:1;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13449:117;13605:2;13631:53;13676:7;13667:6;13656:9;13652:22;13631:53;:::i;:::-;13621:63;;13576:118;13227:474;;;;;:::o;13707:180::-;13755:77;13752:1;13745:88;13852:4;13849:1;13842:15;13876:4;13873:1;13866:15;13893:320;13937:6;13974:1;13968:4;13964:12;13954:22;;14021:1;14015:4;14011:12;14042:18;14032:81;;14098:4;14090:6;14086:17;14076:27;;14032:81;14160:2;14152:6;14149:14;14129:18;14126:38;14123:84;;14179:18;;:::i;:::-;14123:84;13944:269;13893:320;;;:::o;14219:169::-;14359:21;14355:1;14347:6;14343:14;14336:45;14219:169;:::o;14394:366::-;14536:3;14557:67;14621:2;14616:3;14557:67;:::i;:::-;14550:74;;14633:93;14722:3;14633:93;:::i;:::-;14751:2;14746:3;14742:12;14735:19;;14394:366;;;:::o;14766:419::-;14932:4;14970:2;14959:9;14955:18;14947:26;;15019:9;15013:4;15009:20;15005:1;14994:9;14990:17;14983:47;15047:131;15173:4;15047:131;:::i;:::-;15039:139;;14766:419;;;:::o;15191:230::-;15331:34;15327:1;15319:6;15315:14;15308:58;15400:13;15395:2;15387:6;15383:15;15376:38;15191:230;:::o;15427:366::-;15569:3;15590:67;15654:2;15649:3;15590:67;:::i;:::-;15583:74;;15666:93;15755:3;15666:93;:::i;:::-;15784:2;15779:3;15775:12;15768:19;;15427:366;;;:::o;15799:419::-;15965:4;16003:2;15992:9;15988:18;15980:26;;16052:9;16046:4;16042:20;16038:1;16027:9;16023:17;16016:47;16080:131;16206:4;16080:131;:::i;:::-;16072:139;;15799:419;;;:::o;16224:180::-;16272:77;16269:1;16262:88;16369:4;16366:1;16359:15;16393:4;16390:1;16383:15;16410:191;16450:3;16469:20;16487:1;16469:20;:::i;:::-;16464:25;;16503:20;16521:1;16503:20;:::i;:::-;16498:25;;16546:1;16543;16539:9;16532:16;;16567:3;16564:1;16561:10;16558:36;;;16574:18;;:::i;:::-;16558:36;16410:191;;;;:::o;16607:172::-;16747:24;16743:1;16735:6;16731:14;16724:48;16607:172;:::o;16785:366::-;16927:3;16948:67;17012:2;17007:3;16948:67;:::i;:::-;16941:74;;17024:93;17113:3;17024:93;:::i;:::-;17142:2;17137:3;17133:12;17126:19;;16785:366;;;:::o;17157:419::-;17323:4;17361:2;17350:9;17346:18;17338:26;;17410:9;17404:4;17400:20;17396:1;17385:9;17381:17;17374:47;17438:131;17564:4;17438:131;:::i;:::-;17430:139;;17157:419;;;:::o;17582:223::-;17722:34;17718:1;17710:6;17706:14;17699:58;17791:6;17786:2;17778:6;17774:15;17767:31;17582:223;:::o;17811:366::-;17953:3;17974:67;18038:2;18033:3;17974:67;:::i;:::-;17967:74;;18050:93;18139:3;18050:93;:::i;:::-;18168:2;18163:3;18159:12;18152:19;;17811:366;;;:::o;18183:419::-;18349:4;18387:2;18376:9;18372:18;18364:26;;18436:9;18430:4;18426:20;18422:1;18411:9;18407:17;18400:47;18464:131;18590:4;18464:131;:::i;:::-;18456:139;;18183:419;;;:::o;18608:410::-;18648:7;18671:20;18689:1;18671:20;:::i;:::-;18666:25;;18705:20;18723:1;18705:20;:::i;:::-;18700:25;;18760:1;18757;18753:9;18782:30;18800:11;18782:30;:::i;:::-;18771:41;;18961:1;18952:7;18948:15;18945:1;18942:22;18922:1;18915:9;18895:83;18872:139;;18991:18;;:::i;:::-;18872:139;18656:362;18608:410;;;;:::o;19024:177::-;19164:29;19160:1;19152:6;19148:14;19141:53;19024:177;:::o;19207:366::-;19349:3;19370:67;19434:2;19429:3;19370:67;:::i;:::-;19363:74;;19446:93;19535:3;19446:93;:::i;:::-;19564:2;19559:3;19555:12;19548:19;;19207:366;;;:::o;19579:419::-;19745:4;19783:2;19772:9;19768:18;19760:26;;19832:9;19826:4;19822:20;19818:1;19807:9;19803:17;19796:47;19860:131;19986:4;19860:131;:::i;:::-;19852:139;;19579:419;;;:::o;20004:97::-;20063:6;20091:3;20081:13;;20004:97;;;;:::o;20107:141::-;20156:4;20179:3;20171:11;;20202:3;20199:1;20192:14;20236:4;20233:1;20223:18;20215:26;;20107:141;;;:::o;20254:93::-;20291:6;20338:2;20333;20326:5;20322:14;20318:23;20308:33;;20254:93;;;:::o;20353:107::-;20397:8;20447:5;20441:4;20437:16;20416:37;;20353:107;;;;:::o;20466:393::-;20535:6;20585:1;20573:10;20569:18;20608:97;20638:66;20627:9;20608:97;:::i;:::-;20726:39;20756:8;20745:9;20726:39;:::i;:::-;20714:51;;20798:4;20794:9;20787:5;20783:21;20774:30;;20847:4;20837:8;20833:19;20826:5;20823:30;20813:40;;20542:317;;20466:393;;;;;:::o;20865:142::-;20915:9;20948:53;20966:34;20975:24;20993:5;20975:24;:::i;:::-;20966:34;:::i;:::-;20948:53;:::i;:::-;20935:66;;20865:142;;;:::o;21013:75::-;21056:3;21077:5;21070:12;;21013:75;;;:::o;21094:269::-;21204:39;21235:7;21204:39;:::i;:::-;21265:91;21314:41;21338:16;21314:41;:::i;:::-;21306:6;21299:4;21293:11;21265:91;:::i;:::-;21259:4;21252:105;21170:193;21094:269;;;:::o;21369:73::-;21414:3;21369:73;:::o;21448:189::-;21525:32;;:::i;:::-;21566:65;21624:6;21616;21610:4;21566:65;:::i;:::-;21501:136;21448:189;;:::o;21643:186::-;21703:120;21720:3;21713:5;21710:14;21703:120;;;21774:39;21811:1;21804:5;21774:39;:::i;:::-;21747:1;21740:5;21736:13;21727:22;;21703:120;;;21643:186;;:::o;21835:543::-;21936:2;21931:3;21928:11;21925:446;;;21970:38;22002:5;21970:38;:::i;:::-;22054:29;22072:10;22054:29;:::i;:::-;22044:8;22040:44;22237:2;22225:10;22222:18;22219:49;;;22258:8;22243:23;;22219:49;22281:80;22337:22;22355:3;22337:22;:::i;:::-;22327:8;22323:37;22310:11;22281:80;:::i;:::-;21940:431;;21925:446;21835:543;;;:::o;22384:117::-;22438:8;22488:5;22482:4;22478:16;22457:37;;22384:117;;;;:::o;22507:169::-;22551:6;22584:51;22632:1;22628:6;22620:5;22617:1;22613:13;22584:51;:::i;:::-;22580:56;22665:4;22659;22655:15;22645:25;;22558:118;22507:169;;;;:::o;22681:295::-;22757:4;22903:29;22928:3;22922:4;22903:29;:::i;:::-;22895:37;;22965:3;22962:1;22958:11;22952:4;22949:21;22941:29;;22681:295;;;;:::o;22981:1403::-;23105:44;23145:3;23140;23105:44;:::i;:::-;23214:18;23206:6;23203:30;23200:56;;;23236:18;;:::i;:::-;23200:56;23280:38;23312:4;23306:11;23280:38;:::i;:::-;23365:67;23425:6;23417;23411:4;23365:67;:::i;:::-;23459:1;23488:2;23480:6;23477:14;23505:1;23500:632;;;;24176:1;24193:6;24190:84;;;24249:9;24244:3;24240:19;24227:33;24218:42;;24190:84;24300:67;24360:6;24353:5;24300:67;:::i;:::-;24294:4;24287:81;24149:229;23470:908;;23500:632;23552:4;23548:9;23540:6;23536:22;23586:37;23618:4;23586:37;:::i;:::-;23645:1;23659:215;23673:7;23670:1;23667:14;23659:215;;;23759:9;23754:3;23750:19;23737:33;23729:6;23722:49;23810:1;23802:6;23798:14;23788:24;;23857:2;23846:9;23842:18;23829:31;;23696:4;23693:1;23689:12;23684:17;;23659:215;;;23902:6;23893:7;23890:19;23887:186;;;23967:9;23962:3;23958:19;23945:33;24010:48;24052:4;24044:6;24040:17;24029:9;24010:48;:::i;:::-;24002:6;23995:64;23910:163;23887:186;24119:1;24115;24107:6;24103:14;24099:22;24093:4;24086:36;23507:625;;;23470:908;;23080:1304;;;22981:1403;;;:::o;24390:178::-;24530:30;24526:1;24518:6;24514:14;24507:54;24390:178;:::o;24574:366::-;24716:3;24737:67;24801:2;24796:3;24737:67;:::i;:::-;24730:74;;24813:93;24902:3;24813:93;:::i;:::-;24931:2;24926:3;24922:12;24915:19;;24574:366;;;:::o;24946:419::-;25112:4;25150:2;25139:9;25135:18;25127:26;;25199:9;25193:4;25189:20;25185:1;25174:9;25170:17;25163:47;25227:131;25353:4;25227:131;:::i;:::-;25219:139;;24946:419;;;:::o;25371:442::-;25520:4;25558:2;25547:9;25543:18;25535:26;;25571:71;25639:1;25628:9;25624:17;25615:6;25571:71;:::i;:::-;25652:72;25720:2;25709:9;25705:18;25696:6;25652:72;:::i;:::-;25734;25802:2;25791:9;25787:18;25778:6;25734:72;:::i;:::-;25371:442;;;;;;:::o;25819:137::-;25873:5;25904:6;25898:13;25889:22;;25920:30;25944:5;25920:30;:::i;:::-;25819:137;;;;:::o;25962:345::-;26029:6;26078:2;26066:9;26057:7;26053:23;26049:32;26046:119;;;26084:79;;:::i;:::-;26046:119;26204:1;26229:61;26282:7;26273:6;26262:9;26258:22;26229:61;:::i;:::-;26219:71;;26175:125;25962:345;;;;:::o;26313:143::-;26370:5;26401:6;26395:13;26386:22;;26417:33;26444:5;26417:33;:::i;:::-;26313:143;;;;:::o;26462:351::-;26532:6;26581:2;26569:9;26560:7;26556:23;26552:32;26549:119;;;26587:79;;:::i;:::-;26549:119;26707:1;26732:64;26788:7;26779:6;26768:9;26764:22;26732:64;:::i;:::-;26722:74;;26678:128;26462:351;;;;:::o;26819:228::-;26959:34;26955:1;26947:6;26943:14;26936:58;27028:11;27023:2;27015:6;27011:15;27004:36;26819:228;:::o;27053:366::-;27195:3;27216:67;27280:2;27275:3;27216:67;:::i;:::-;27209:74;;27292:93;27381:3;27292:93;:::i;:::-;27410:2;27405:3;27401:12;27394:19;;27053:366;;;:::o;27425:419::-;27591:4;27629:2;27618:9;27614:18;27606:26;;27678:9;27672:4;27668:20;27664:1;27653:9;27649:17;27642:47;27706:131;27832:4;27706:131;:::i;:::-;27698:139;;27425:419;;;:::o;27850:194::-;27890:4;27910:20;27928:1;27910:20;:::i;:::-;27905:25;;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27988:1;27985;27981:9;27973:17;;28012:1;28006:4;28003:11;28000:37;;;28017:18;;:::i;:::-;28000:37;27850:194;;;;:::o;28050:147::-;28151:11;28188:3;28173:18;;28050:147;;;;:::o;28203:114::-;;:::o;28323:398::-;28482:3;28503:83;28584:1;28579:3;28503:83;:::i;:::-;28496:90;;28595:93;28684:3;28595:93;:::i;:::-;28713:1;28708:3;28704:11;28697:18;;28323:398;;;:::o;28727:379::-;28911:3;28933:147;29076:3;28933:147;:::i;:::-;28926:154;;29097:3;29090:10;;28727:379;;;:::o;29112:166::-;29252:18;29248:1;29240:6;29236:14;29229:42;29112:166;:::o;29284:366::-;29426:3;29447:67;29511:2;29506:3;29447:67;:::i;:::-;29440:74;;29523:93;29612:3;29523:93;:::i;:::-;29641:2;29636:3;29632:12;29625:19;;29284:366;;;:::o;29656:419::-;29822:4;29860:2;29849:9;29845:18;29837:26;;29909:9;29903:4;29899:20;29895:1;29884:9;29880:17;29873:47;29937:131;30063:4;29937:131;:::i;:::-;29929:139;;29656:419;;;:::o;30081:148::-;30183:11;30220:3;30205:18;;30081:148;;;;:::o;30235:390::-;30341:3;30369:39;30402:5;30369:39;:::i;:::-;30424:89;30506:6;30501:3;30424:89;:::i;:::-;30417:96;;30522:65;30580:6;30575:3;30568:4;30561:5;30557:16;30522:65;:::i;:::-;30612:6;30607:3;30603:16;30596:23;;30345:280;30235:390;;;;:::o;30631:435::-;30811:3;30833:95;30924:3;30915:6;30833:95;:::i;:::-;30826:102;;30945:95;31036:3;31027:6;30945:95;:::i;:::-;30938:102;;31057:3;31050:10;;30631:435;;;;;:::o;31072:225::-;31212:34;31208:1;31200:6;31196:14;31189:58;31281:8;31276:2;31268:6;31264:15;31257:33;31072:225;:::o;31303:366::-;31445:3;31466:67;31530:2;31525:3;31466:67;:::i;:::-;31459:74;;31542:93;31631:3;31542:93;:::i;:::-;31660:2;31655:3;31651:12;31644:19;;31303:366;;;:::o;31675:419::-;31841:4;31879:2;31868:9;31864:18;31856:26;;31928:9;31922:4;31918:20;31914:1;31903:9;31899:17;31892:47;31956:131;32082:4;31956:131;:::i;:::-;31948:139;;31675:419;;;:::o;32100:182::-;32240:34;32236:1;32228:6;32224:14;32217:58;32100:182;:::o;32288:366::-;32430:3;32451:67;32515:2;32510:3;32451:67;:::i;:::-;32444:74;;32527:93;32616:3;32527:93;:::i;:::-;32645:2;32640:3;32636:12;32629:19;;32288:366;;;:::o;32660:419::-;32826:4;32864:2;32853:9;32849:18;32841:26;;32913:9;32907:4;32903:20;32899:1;32888:9;32884:17;32877:47;32941:131;33067:4;32941:131;:::i;:::-;32933:139;;32660:419;;;:::o;33085:98::-;33136:6;33170:5;33164:12;33154:22;;33085:98;;;:::o;33189:168::-;33272:11;33306:6;33301:3;33294:19;33346:4;33341:3;33337:14;33322:29;;33189:168;;;;:::o;33363:373::-;33449:3;33477:38;33509:5;33477:38;:::i;:::-;33531:70;33594:6;33589:3;33531:70;:::i;:::-;33524:77;;33610:65;33668:6;33663:3;33656:4;33649:5;33645:16;33610:65;:::i;:::-;33700:29;33722:6;33700:29;:::i;:::-;33695:3;33691:39;33684:46;;33453:283;33363:373;;;;:::o;33742:640::-;33937:4;33975:3;33964:9;33960:19;33952:27;;33989:71;34057:1;34046:9;34042:17;34033:6;33989:71;:::i;:::-;34070:72;34138:2;34127:9;34123:18;34114:6;34070:72;:::i;:::-;34152;34220:2;34209:9;34205:18;34196:6;34152:72;:::i;:::-;34271:9;34265:4;34261:20;34256:2;34245:9;34241:18;34234:48;34299:76;34370:4;34361:6;34299:76;:::i;:::-;34291:84;;33742:640;;;;;;;:::o;34388:141::-;34444:5;34475:6;34469:13;34460:22;;34491:32;34517:5;34491:32;:::i;:::-;34388:141;;;;:::o;34535:349::-;34604:6;34653:2;34641:9;34632:7;34628:23;34624:32;34621:119;;;34659:79;;:::i;:::-;34621:119;34779:1;34804:63;34859:7;34850:6;34839:9;34835:22;34804:63;:::i;:::-;34794:73;;34750:127;34535:349;;;;:::o
Swarm Source
ipfs://c2f76d81cc9e1b961522117756043ef634302ab44839c3e8de609f073daeb2e9
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.