Overview
Max Total Supply
1,111 WincityPGC
Holders
363
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WincityParisGrandeChaumiere
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol"; // __ _______ _ _ _____ _____ _________ __ // \ \ / /_ _| \ | |/ ____|_ _|__ __\ \ / / // \ \ /\ / / | | | \| | | | | | | \ \_/ / // \ \/ \/ / | | | . ` | | | | | | \ / // \ /\ / _| |_| |\ | |____ _| |_ | | | | // \/ \/ |_____|_| \_|\_____|_____| |_| |_| // // Contract Type : Revenue-based Finance Decentralised // Operator : SAS FONCIERE WINCITY ( French company ) // Fees : They are available on wincity.com /// @author WinCity | Emmanuel Chappat /// @title Wincity Paris Grande Chaumiere contract WincityParisGrandeChaumiere is ERC1155, ERC1155Pausable, Ownable { using Counters for Counters.Counter; /** Triggered everytime the public / private reserve ratio is updated @param rarityRangeId Rarity Range Id (indexed at 0) @param newPublicSupply The new public supply count @param newFirstPrivateId The first private token in the range */ event PublicReserveUpdated( uint8 rarityRangeId, uint16 newPublicSupply, uint16 newFirstPrivateId ); event MintPriceUpdated(uint8 rarityRangeId, uint256 newPrice); string public name; string public symbol; /** Rarity is linked to token id as such: ID 1 = Unique ID 2 to ID 11 = RarityRange 1 (10 cards) ID 12 to ID 111 = RarityRange 2 (100 cards) ID 112 to ID 1111 = RarityRange 3 (1000 cards) */ // Max supply for each rarity type uint16 public constant RARITY_RANGE1_SUPPLY = 1; uint16 public constant RARITY_RANGE2_SUPPLY = 10; uint16 public constant RARITY_RANGE3_SUPPLY = 100; uint16 public constant RARITY_RANGE4_SUPPLY = 1000; // Initial Public supply for each rarity type, // can be updated after deploy uint16 public constant RARITY_RANGE1_PUBLIC_SUPPLY = 1; uint16 public constant RARITY_RANGE2_PUBLIC_SUPPLY = 10; uint16 public constant RARITY_RANGE3_PUBLIC_SUPPLY = 100; uint16 public constant RARITY_RANGE4_PUBLIC_SUPPLY = 1000; uint16 public royaltyPercentage = 1; address public royaltyReceiver; uint16 public maxTokenPerTx = 100; bytes32 public whitelistMerkleRoot; struct RarityRange { // First token ID in this range uint16 firstTokenId; // Last token ID in this range uint16 lastTokenId; // First private token ID in this range uint16 firstPrivateTokenId; // Price for public mint in this range uint256 mintPrice; } // RarityRanges by id mapping(uint8 => RarityRange) private rarityRangeById; // Public mint starting time in seconds uint256 public publicSaleStartTimestamp; // Mapping to keep track of the public token minted. By RarityRange id mapping(uint8 => Counters.Counter) private publicMintedCounter; // Mapping to keep track of the tokens from the private reserve that have already been withdrawn mapping(uint16 => bool) private privateTokenClaimed; // Mapping to keep track of whitelist addresses that have already been claimed mapping(address => bool) private whitelistClaimed; /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * CONSTRUCTOR * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ constructor( string memory _uri, string memory _name, string memory _symbol ) ERC1155(string(abi.encodePacked(_uri, _name, "/{id}"))) { name = _name; symbol = _symbol; uint16 rarityRange1FirstId = 1; uint16 rarityRange2FirstId = rarityRange1FirstId + RARITY_RANGE1_SUPPLY; uint16 rarityRange3FirstId = rarityRange2FirstId + RARITY_RANGE2_SUPPLY; uint16 rarityRange4FirstId = rarityRange3FirstId + RARITY_RANGE3_SUPPLY; // Initialize the 4 rarity ranges rarityRangeById[0] = RarityRange( rarityRange1FirstId, rarityRange2FirstId - 1, rarityRange1FirstId + RARITY_RANGE1_PUBLIC_SUPPLY, 0.04 ether ); rarityRangeById[1] = RarityRange( rarityRange2FirstId, rarityRange3FirstId - 1, rarityRange2FirstId + RARITY_RANGE2_PUBLIC_SUPPLY, 0.03 ether ); rarityRangeById[2] = RarityRange( rarityRange3FirstId, rarityRange4FirstId - 1, rarityRange3FirstId + RARITY_RANGE3_PUBLIC_SUPPLY, 0.02 ether ); rarityRangeById[3] = RarityRange( rarityRange4FirstId, rarityRange4FirstId + RARITY_RANGE4_SUPPLY - 1, rarityRange4FirstId + RARITY_RANGE4_PUBLIC_SUPPLY, 0.01 ether ); // The -1 are because the token are not yet minted and we increment // the counter after the minting is successful. publicMintedCounter[0] = Counters.Counter(rarityRange1FirstId - 1); publicMintedCounter[1] = Counters.Counter(rarityRange2FirstId - 1); publicMintedCounter[2] = Counters.Counter(rarityRange3FirstId - 1); publicMintedCounter[3] = Counters.Counter(rarityRange4FirstId - 1); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * MODIFIERS * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ modifier whenPublicSaleActive() { require(isPublicSaleOpen(), "Public sale not opened."); _; } modifier whenPreSaleActive() { require(isPreSaleOpen(), "Presale not opened."); _; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * OpenZepplin Hooks * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * GETTERS / SETTERS * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function isPublicSaleOpen() public view returns (bool) { return block.timestamp >= publicSaleStartTimestamp && publicSaleStartTimestamp != 0; } function isPreSaleOpen() public view returns (bool) { return publicSaleStartTimestamp > 0 ? block.timestamp >= (publicSaleStartTimestamp - 86400) : false; } function getBalance() public view returns (uint256) { return address(this).balance; } function publicMintPrice(uint8 rarityRangeId) public view returns (uint256) { require( rarityRangeId >= 0 && rarityRangeId <= 3, "Invalid RarityRange ID" ); return rarityRangeById[rarityRangeId].mintPrice; } function getRarityRangeById(uint8 id) public view returns (RarityRange memory) { require(id >= 0 && id <= 3, "Invalid RarityRange ID"); return rarityRangeById[id]; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Setters (ownable) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ function setPublicSaleTimestamp(uint256 _timestamp) external onlyOwner { publicSaleStartTimestamp = _timestamp; } function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner { whitelistMerkleRoot = _merkleRoot; } function setUri(string calldata _uri) external onlyOwner { _setURI(_uri); } function setPublicMintPrice(uint8 rarityRangeId, uint256 _mintPrice) public onlyOwner { require(_mintPrice > 0, "mintPrice must be greater than 0"); require( rarityRangeId >= 0 && rarityRangeId <= 3, "Invalid RarityRange ID" ); rarityRangeById[rarityRangeId].mintPrice = _mintPrice; emit MintPriceUpdated(rarityRangeId, _mintPrice); } function setMaxPerTx(uint8 maxPerTx) public onlyOwner { require(maxPerTx > 0, "maxPerTx must be greater than 0"); maxTokenPerTx = maxPerTx; } /** Set a public reserve for a given rarity range @param rarityRangeId The rarity range ID (indexed at 0) @param newPublicSupply the new count of public supply tokens */ function setPublicReserve(uint8 rarityRangeId, uint16 newPublicSupply) public onlyOwner { require( rarityRangeId >= 0 && rarityRangeId <= 3, "Invalid RarityRange ID" ); RarityRange memory rarityRange = getRarityRangeById(rarityRangeId); uint16 newFirstPrivateId = rarityRange.firstTokenId + newPublicSupply; require( newFirstPrivateId != rarityRange.firstPrivateTokenId, "Public supply did not change." ); // The +1 bellow for when a range is fully reserved for public sale require( newFirstPrivateId <= rarityRange.lastTokenId + 1, "Higher than max supply." ); uint256 currentPublicSupply = totalSupplyForRarityRange(rarityRangeId); require( currentPublicSupply < newFirstPrivateId, "Public supply too low" ); rarityRangeById[rarityRangeId].firstPrivateTokenId = newFirstPrivateId; emit PublicReserveUpdated( rarityRangeId, newPublicSupply, newFirstPrivateId ); } /** Return the supply count for a given rarity range ID @param rarityRangeId The rarity range ID (indexed at 0) */ function totalSupplyForRarityRange(uint8 rarityRangeId) public view returns (uint256) { return publicMintedCounter[rarityRangeId].current(); } /** Return the total of publicly minted tokens @dev calculations are made here to save gas on minting */ function totalSupply() public view returns (uint256) { RarityRange memory rarityRange1 = getRarityRangeById(0); RarityRange memory rarityRange2 = getRarityRangeById(1); RarityRange memory rarityRange3 = getRarityRangeById(2); RarityRange memory rarityRange4 = getRarityRangeById(3); uint256 current1 = publicMintedCounter[0].current() + 1; uint256 current2 = publicMintedCounter[1].current() + 1; uint256 current3 = publicMintedCounter[2].current() + 1; uint256 current4 = publicMintedCounter[3].current() + 1; return (current1 - rarityRange1.firstTokenId) + (current2 - rarityRange2.firstTokenId) + (current3 - rarityRange3.firstTokenId) + (current4 - rarityRange4.firstTokenId); } /** Check if a private token has been previously withdrawn @param id The token Id to be claimed */ function checkClaimStatus(uint8 id) public view virtual returns (bool) { return privateTokenClaimed[id]; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * MINTING * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /** Used to "extract" a privately held token and mint it to a given address @param rarityRangeId The rarity range ID (indexed at 0) @param id Id of the token @param receiver receipient address */ function claimTokenFromPrivateReserve( uint8 rarityRangeId, uint16 id, address receiver ) external onlyOwner returns (uint256) { // Do we have a valid RarityRange ID require( (rarityRangeId >= 0 && rarityRangeId <= 3), "Invalid RarityRange ID" ); require(tx.origin == msg.sender, "Caller should not be a contract."); // Make sure the token has not been previously withdrawn require(privateTokenClaimed[id] == false, "Token previously withdrawn"); RarityRange memory rarityRange = getRarityRangeById(rarityRangeId); require( (id >= rarityRange.firstPrivateTokenId && id <= rarityRange.lastTokenId), "Token ID not eligeble for claim" ); privateTokenClaimed[id] = true; _mint(receiver, id, 1, ""); return id; } /** @param rarityRangeId The rarity range ID (indexed at 0) @param count how many tokens to mint at once */ function _purchase(uint8 rarityRangeId, uint8 count) internal whenNotPaused { require(tx.origin == msg.sender, "Caller should not be a contract."); // Do we have a valid RarityRange ID require( rarityRangeId >= 0 && rarityRangeId <= 3, "Invalid RarityRange ID" ); // Do we have enough supply to fullfil the order RarityRange memory currentRarityRange = getRarityRangeById( rarityRangeId ); require( publicMintedCounter[rarityRangeId].current() + count < currentRarityRange.firstPrivateTokenId, "Not Enough Supply" ); // Is count supperior than max per wallet require(count > 0 && count <= maxTokenPerTx, "Invalid count"); // Check for payment require( count * currentRarityRange.mintPrice == msg.value || msg.sender == owner(), "Incorrect amount of ether sent" ); // All good, we can start minting. for (uint16 i = 0; i < count; i++) { publicMintedCounter[rarityRangeId].increment(); _mint( msg.sender, publicMintedCounter[rarityRangeId].current(), 1, "" ); } } /** Public mint is only for token assigned to the public reserve. Private token can not be minted directly via ethereum. @param rarityRangeId The rarity range ID (indexed at 0) @param count how many tokens to mint at once */ function mintPublicSale(uint8 rarityRangeId, uint8 count) external payable whenPublicSaleActive whenNotPaused { _purchase(rarityRangeId, count); } /** Presale mint. @param rarityRangeId The rarity range ID (indexed at 0) @param count how many tokens to mint at once @param merkleProof The merkle proof hashes */ function mintPreSale( uint8 rarityRangeId, uint8 count, bytes32[] calldata merkleProof ) external payable whenPreSaleActive whenNotPaused { // check is WL has already been claimed for this user require( whitelistClaimed[msg.sender] == false, "Address has already claim." ); // merkle tree magic bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(merkleProof, whitelistMerkleRoot, leaf), "Address is not whitelisted." ); whitelistClaimed[msg.sender] == true; _purchase(rarityRangeId, count); } /** Founder Mint @param rarityRangeId The rarity range ID (indexed at 0) @param count how many tokens to mint at once */ function founderMint(uint8 rarityRangeId, uint8 count) external payable whenNotPaused onlyOwner { _purchase(rarityRangeId, count); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Withdrawls * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ function withdrawAmount(address payable recipient, uint256 amount) public onlyOwner { (bool succeed, bytes memory data) = recipient.call{value: amount}(""); require(succeed, "Failed to withdraw Ether"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"MintPriceUpdated","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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"indexed":false,"internalType":"uint16","name":"newPublicSupply","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFirstPrivateId","type":"uint16"}],"name":"PublicReserveUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"RARITY_RANGE1_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE1_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE2_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE2_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE3_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE3_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE4_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE4_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"}],"name":"checkClaimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint16","name":"id","type":"uint16"},{"internalType":"address","name":"receiver","type":"address"}],"name":"claimTokenFromPrivateReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"}],"name":"founderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"}],"name":"getRarityRangeById","outputs":[{"components":[{"internalType":"uint16","name":"firstTokenId","type":"uint16"},{"internalType":"uint16","name":"lastTokenId","type":"uint16"},{"internalType":"uint16","name":"firstPrivateTokenId","type":"uint16"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"internalType":"struct WincityParisGrandeChaumiere.RarityRange","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerTx","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"}],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxPerTx","type":"uint8"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint16","name":"newPublicSupply","type":"uint16"}],"name":"setPublicReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPublicSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"}],"name":"totalSupplyForRarityRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600660006101000a81548161ffff021916908361ffff1602179055506064600660166101000a81548161ffff021916908361ffff1602179055503480156200004d57600080fd5b5060405162006b0f38038062006b0f83398181016040528101906200007391906200092f565b82826040516020016200008892919062000a85565b604051602081830303815290604052620000a881620005f860201b60201c565b506000600360006101000a81548160ff021916908315150217905550620000e4620000d86200061460201b60201c565b6200061c60201b60201c565b8160049080519060200190620000fc929190620006e2565b50806005908051906020019062000115929190620006e2565b5060006001905060006001826200012d919062000af7565b90506000600a8262000140919062000af7565b9050600060648262000153919062000af7565b905060405180608001604052808561ffff16815260200160018562000179919062000b36565b61ffff16815260200160018662000191919062000af7565b61ffff168152602001668e1bc9bf040000815250600860008060ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808461ffff16815260200160018462000255919062000b36565b61ffff168152602001600a856200026d919062000af7565b61ffff168152602001666a94d74f43000081525060086000600160ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808361ffff16815260200160018362000332919062000b36565b61ffff1681526020016064846200034a919062000af7565b61ffff16815260200166470de4df82000081525060086000600260ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808261ffff16815260200160016103e88462000412919062000af7565b6200041e919062000b36565b61ffff1681526020016103e88362000437919062000af7565b61ffff168152602001662386f26fc1000081525060086000600360ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff160217905550606082015181600101559050506040518060200160405280600186620004f2919062000b36565b61ffff16815250600a60008060ff16815260200190815260200160002060008201518160000155905050604051806020016040528060018562000536919062000b36565b61ffff16815250600a6000600160ff1681526020019081526020016000206000820151816000015590505060405180602001604052806001846200057b919062000b36565b61ffff16815250600a6000600260ff168152602001908152602001600020600082015181600001559050506040518060200160405280600183620005c0919062000b36565b61ffff16815250600a6000600360ff168152602001908152602001600020600082015181600001559050505050505050505062000bd6565b806002908051906020019062000610929190620006e2565b5050565b600033905090565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620006f09062000ba0565b90600052602060002090601f01602090048101928262000714576000855562000760565b82601f106200072f57805160ff191683800117855562000760565b8280016001018555821562000760579182015b828111156200075f57825182559160200191906001019062000742565b5b5090506200076f919062000773565b5090565b5b808211156200078e57600081600090555060010162000774565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007fb82620007b0565b810181811067ffffffffffffffff821117156200081d576200081c620007c1565b5b80604052505050565b60006200083262000792565b9050620008408282620007f0565b919050565b600067ffffffffffffffff821115620008635762000862620007c1565b5b6200086e82620007b0565b9050602081019050919050565b60005b838110156200089b5780820151818401526020810190506200087e565b83811115620008ab576000848401525b50505050565b6000620008c8620008c28462000845565b62000826565b905082815260208101848484011115620008e757620008e6620007ab565b5b620008f48482856200087b565b509392505050565b600082601f830112620009145762000913620007a6565b5b815162000926848260208601620008b1565b91505092915050565b6000806000606084860312156200094b576200094a6200079c565b5b600084015167ffffffffffffffff8111156200096c576200096b620007a1565b5b6200097a86828701620008fc565b935050602084015167ffffffffffffffff8111156200099e576200099d620007a1565b5b620009ac86828701620008fc565b925050604084015167ffffffffffffffff811115620009d057620009cf620007a1565b5b620009de86828701620008fc565b9150509250925092565b600081519050919050565b600081905092915050565b600062000a0b82620009e8565b62000a178185620009f3565b935062000a298185602086016200087b565b80840191505092915050565b7f2f7b69647d000000000000000000000000000000000000000000000000000000600082015250565b600062000a6d600583620009f3565b915062000a7a8262000a35565b600582019050919050565b600062000a938285620009fe565b915062000aa18284620009fe565b915062000aae8262000a5e565b91508190509392505050565b600061ffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b048262000aba565b915062000b118362000aba565b92508261ffff0382111562000b2b5762000b2a62000ac8565b5b828201905092915050565b600062000b438262000aba565b915062000b508362000aba565b92508282101562000b665762000b6562000ac8565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bb957607f821691505b6020821081141562000bd05762000bcf62000b71565b5b50919050565b615f298062000be66000396000f3fe6080604052600436106102925760003560e01c80638a71bb2d1161015a578063bc94a45d116100c1578063e985e9c51161007a578063e985e9c5146109a8578063f242432a146109e5578063f2fde38b14610a0e578063f5bdcd0c14610a37578063f5d24c4f14610a74578063f8ede57914610a9f57610292565b8063bc94a45d146108aa578063bd32fb66146108d3578063c50ff818146108fc578063d3faf84e14610927578063d7822c9914610952578063e811fdea1461097d57610292565b8063a101ec2611610113578063a101ec26146107a7578063a22cb465146107c3578063a96784e4146107ec578063aa98e0c614610817578063aea92c7014610842578063b474596d1461086d57610292565b80638a71bb2d146106955780638da5cb5b146106c057806395d89b41146106eb5780639b642de1146107165780639f318b161461073f5780639fbc87131461077c57610292565b80632eb2c2d6116101fe5780635a43d818116101b75780635a43d818146105bf5780635c975abb146105ea5780636e34c79614610615578063715018a61461063e578063736fe565146106555780638456cb591461067e57610292565b80632eb2c2d6146104d457806335453da8146104fd5780633ec3e06d146105195780633f4ba83a146105425780634e1273f414610559578063511a96051461059657610292565b80630e89341c116102505780630e89341c146103cf57806312065fe01461040c57806318160ddd146104375780631a6949e3146104625780631b5f24301461048d5780631f281ace146104a957610292565b8062fdd58e1461029757806301d35173146102d457806301ffc9a7146102ff578063061ac1f71461033c57806306fdde03146103675780630e3e136414610392575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613b80565b610adc565b6040516102cb9190613bcf565b60405180910390f35b3480156102e057600080fd5b506102e9610ba5565b6040516102f69190613c07565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613c7a565b610bb9565b6040516103339190613cc2565b60405180910390f35b34801561034857600080fd5b50610351610c9b565b60405161035e9190613c07565b60405180910390f35b34801561037357600080fd5b5061037c610ca0565b6040516103899190613d76565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613dd1565b610d2e565b6040516103c69190613bcf565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfe565b610daa565b6040516104039190613d76565b60405180910390f35b34801561041857600080fd5b50610421610e3e565b60405161042e9190613bcf565b60405180910390f35b34801561044357600080fd5b5061044c610e46565b6040516104599190613bcf565b60405180910390f35b34801561046e57600080fd5b50610477610fb5565b6040516104849190613cc2565b60405180910390f35b6104a760048036038101906104a29190613e90565b610fd1565b005b3480156104b557600080fd5b506104be61120c565b6040516104cb9190613cc2565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906140f7565b611238565b005b610517600480360381019061051291906141c6565b6112d9565b005b34801561052557600080fd5b50610540600480360381019061053b9190614206565b6113ab565b005b34801561054e57600080fd5b5061055761151f565b005b34801561056557600080fd5b50610580600480360381019061057b9190614309565b6115a5565b60405161058d919061443f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190613dfe565b6116be565b005b3480156105cb57600080fd5b506105d4611744565b6040516105e19190613c07565b60405180910390f35b3480156105f657600080fd5b506105ff611749565b60405161060c9190613cc2565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613dd1565b611760565b005b34801561064a57600080fd5b50610653611845565b005b34801561066157600080fd5b5061067c6004803603810190610677919061449f565b6118cd565b005b34801561068a57600080fd5b506106936119fd565b005b3480156106a157600080fd5b506106aa611a83565b6040516106b79190613c07565b60405180910390f35b3480156106cc57600080fd5b506106d5611a97565b6040516106e291906144ee565b60405180910390f35b3480156106f757600080fd5b50610700611ac1565b60405161070d9190613d76565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061455f565b611b4f565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd1565b611c1c565b6040516107739190613cc2565b60405180910390f35b34801561078857600080fd5b50610791611c4d565b60405161079e91906144ee565b60405180910390f35b6107c160048036038101906107bc91906141c6565b611c73565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906145d8565b611d10565b005b3480156107f857600080fd5b50610801611d26565b60405161080e9190613c07565b60405180910390f35b34801561082357600080fd5b5061082c611d2b565b6040516108399190614631565b60405180910390f35b34801561084e57600080fd5b50610857611d31565b6040516108649190613c07565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613dd1565b611d36565b6040516108a191906146b0565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906146f7565b611e2a565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190614763565b612094565b005b34801561090857600080fd5b5061091161211a565b60405161091e9190613c07565b60405180910390f35b34801561093357600080fd5b5061093c612120565b6040516109499190613c07565b60405180910390f35b34801561095e57600080fd5b50610967612126565b6040516109749190613bcf565b60405180910390f35b34801561098957600080fd5b5061099261212c565b60405161099f9190613c07565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190614790565b612131565b6040516109dc9190613cc2565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a0791906147d0565b6121c5565b005b348015610a1a57600080fd5b50610a356004803603810190610a309190614867565b612266565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190614894565b61235e565b604051610a6b9190613bcf565b60405180910390f35b348015610a8057600080fd5b50610a896125e7565b604051610a969190613c07565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613dd1565b6125ec565b604051610ad39190613bcf565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614959565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660169054906101000a900461ffff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c945750610c9382612616565b5b9050919050565b606481565b60048054610cad906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd9906149a8565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b505050505081565b6000808260ff1610158015610d47575060038260ff1611155b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614a26565b60405180910390fd5b600860008360ff1660ff168152602001908152602001600020600101549050919050565b606060028054610db9906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906149a8565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b50505050509050919050565b600047905090565b600080610e536000611d36565b90506000610e616001611d36565b90506000610e6f6002611d36565b90506000610e7d6003611d36565b905060006001610ea1600a60008060ff168152602001908152602001600020612680565b610eab9190614a75565b905060006001610ed0600a6000600160ff168152602001908152602001600020612680565b610eda9190614a75565b905060006001610eff600a6000600260ff168152602001908152602001600020612680565b610f099190614a75565b905060006001610f2e600a6000600360ff168152602001908152602001600020612680565b610f389190614a75565b9050846000015161ffff1681610f4e9190614acb565b866000015161ffff1683610f629190614acb565b886000015161ffff1685610f769190614acb565b8a6000015161ffff1687610f8a9190614acb565b610f949190614a75565b610f9e9190614a75565b610fa89190614a75565b9850505050505050505090565b60006009544210158015610fcc5750600060095414155b905090565b610fd961120c565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614b4b565b60405180910390fd5b611020611749565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb7565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614c23565b60405180910390fd5b6000336040516020016111069190614c8b565b60405160208183030381529060405280519060200120905061116c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361268e565b6111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290614cf2565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050505061120585856126a5565b5050505050565b6000806009541161121e576000611233565b6201518060095461122f9190614acb565b4210155b905090565b6112406129b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112865750611285856112806129b9565b612131565b5b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90614d84565b60405180910390fd5b6112d285858585856129c1565b5050505050565b6112e1611749565b15611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614bb7565b60405180910390fd5b6113296129b9565b73ffffffffffffffffffffffffffffffffffffffff16611347611a97565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490614df0565b60405180910390fd5b6113a782826126a5565b5050565b6113b36129b9565b73ffffffffffffffffffffffffffffffffffffffff166113d1611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614df0565b60405180910390fd5b6000811161146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614e5c565b60405180910390fd5b60008260ff1610158015611482575060038260ff1611155b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890614a26565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020600101819055507f7c3597b21f39648603502ec9742c0fc04fbee88cc846e6ea40a3cb6f55f414578282604051611513929190614e8b565b60405180910390a15050565b6115276129b9565b73ffffffffffffffffffffffffffffffffffffffff16611545611a97565b73ffffffffffffffffffffffffffffffffffffffff161461159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614df0565b60405180910390fd5b6115a3612cd5565b565b606081518351146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290614f26565b60405180910390fd5b6000835167ffffffffffffffff81111561160857611607613f04565b5b6040519080825280602002602001820160405280156116365781602001602082028036833780820191505090505b50905060005b84518110156116b35761168385828151811061165b5761165a614f46565b5b602002602001015185838151811061167657611675614f46565b5b6020026020010151610adc565b82828151811061169657611695614f46565b5b602002602001018181525050806116ac90614f75565b905061163c565b508091505092915050565b6116c66129b9565b73ffffffffffffffffffffffffffffffffffffffff166116e4611a97565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614df0565b60405180910390fd5b8060098190555050565b600181565b6000600360009054906101000a900460ff16905090565b6117686129b9565b73ffffffffffffffffffffffffffffffffffffffff16611786611a97565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390614df0565b60405180910390fd5b60008160ff1611611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061500a565b60405180910390fd5b8060ff16600660166101000a81548161ffff021916908361ffff16021790555050565b61184d6129b9565b73ffffffffffffffffffffffffffffffffffffffff1661186b611a97565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614df0565b60405180910390fd5b6118cb6000612d77565b565b6118d56129b9565b73ffffffffffffffffffffffffffffffffffffffff166118f3611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614df0565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff16836040516119709061505b565b60006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b5091509150816119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906150bc565b60405180910390fd5b50505050565b611a056129b9565b73ffffffffffffffffffffffffffffffffffffffff16611a23611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614df0565b60405180910390fd5b611a81612e3d565b565b600660009054906101000a900461ffff1681565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054611ace906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611afa906149a8565b8015611b475780601f10611b1c57610100808354040283529160200191611b47565b820191906000526020600020905b815481529060010190602001808311611b2a57829003601f168201915b505050505081565b611b576129b9565b73ffffffffffffffffffffffffffffffffffffffff16611b75611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290614df0565b60405180910390fd5b611c1882828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ee0565b5050565b6000600b60008360ff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c7b610fb5565b611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190615128565b60405180910390fd5b611cc2611749565b15611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614bb7565b60405180910390fd5b611d0c82826126a5565b5050565b611d22611d1b6129b9565b8383612efa565b5050565b600a81565b60075481565b606481565b611d3e613a01565b60008260ff1610158015611d56575060038260ff1611155b611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614a26565b60405180910390fd5b600860008360ff1660ff1681526020019081526020016000206040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b611e326129b9565b73ffffffffffffffffffffffffffffffffffffffff16611e50611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614df0565b60405180910390fd5b60008260ff1610158015611ebe575060038260ff1611155b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614a26565b60405180910390fd5b6000611f0883611d36565b90506000828260000151611f1c9190615148565b9050816040015161ffff168161ffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f64906151cc565b60405180910390fd5b60018260200151611f7e9190615148565b61ffff168161ffff161115611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90615238565b60405180910390fd5b6000611fd3856125ec565b90508161ffff16811061201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906152a4565b60405180910390fd5b81600860008760ff1660ff16815260200190815260200160002060000160046101000a81548161ffff021916908361ffff1602179055507fe9da5d67aab9f197f7c9df5e5e1ff6ea4130a6674b1d0505f055d40a561bf6cc858584604051612085939291906152c4565b60405180910390a15050505050565b61209c6129b9565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a97565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614df0565b60405180910390fd5b8060078190555050565b6103e881565b6103e881565b60095481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121cd6129b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061221357506122128561220d6129b9565b612131565b5b612252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122499061536d565b60405180910390fd5b61225f8585858585613067565b5050505050565b61226e6129b9565b73ffffffffffffffffffffffffffffffffffffffff1661228c611a97565b73ffffffffffffffffffffffffffffffffffffffff16146122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990614df0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612349906153ff565b60405180910390fd5b61235b81612d77565b50565b60006123686129b9565b73ffffffffffffffffffffffffffffffffffffffff16612386611a97565b73ffffffffffffffffffffffffffffffffffffffff16146123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614df0565b60405180910390fd5b60008460ff16101580156123f4575060038460ff1611155b612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614a26565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124989061546b565b60405180910390fd5b60001515600b60008561ffff1661ffff16815260200190815260200160002060009054906101000a900460ff16151514612510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612507906154d7565b60405180910390fd5b600061251b85611d36565b9050806040015161ffff168461ffff16101580156125455750806020015161ffff168461ffff1611155b612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90615543565b60405180910390fd5b6001600b60008661ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125d8838561ffff166001604051806020016040528060008152506132e9565b8361ffff169150509392505050565b600181565b600061260f600a60008460ff1660ff168152602001908152602001600020612680565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60008261269b858461347f565b1490509392505050565b6126ad611749565b156126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e490614bb7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461275b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127529061546b565b60405180910390fd5b60008260ff1610158015612773575060038260ff1611155b6127b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a990614a26565b60405180910390fd5b60006127bd83611d36565b9050806040015161ffff168260ff166127ed600a60008760ff1660ff168152602001908152602001600020612680565b6127f79190614a75565b10612837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282e906155af565b60405180910390fd5b60008260ff161180156128615750600660169054906101000a900461ffff1661ffff168260ff1611155b6128a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128979061561b565b60405180910390fd5b3481606001518360ff166128b4919061563b565b14806128f257506128c3611a97565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612928906156e1565b60405180910390fd5b60005b8260ff168161ffff1610156129b357612964600a60008660ff1660ff168152602001908152602001600020613532565b6129a033612989600a60008860ff1660ff168152602001908152602001600020612680565b6001604051806020016040528060008152506132e9565b80806129ab90615701565b915050612934565b50505050565b600033905090565b8151835114612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061579e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c90615830565b60405180910390fd5b6000612a7f6129b9565b9050612a8f818787878787613548565b60005b8451811015612c40576000858281518110612ab057612aaf614f46565b5b602002602001015190506000858381518110612acf57612ace614f46565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b67906158c2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c259190614a75565b9250508190555050505080612c3990614f75565b9050612a92565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb79291906158e2565b60405180910390a4612ccd81878787878761355e565b505050505050565b612cdd611749565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390615965565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d606129b9565b604051612d6d91906144ee565b60405180910390a1565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e45611749565b15612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614bb7565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ec96129b9565b604051612ed691906144ee565b60405180910390a1565b8060029080519060200190612ef6929190613a35565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f60906159f7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161305a9190613cc2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615830565b60405180910390fd5b60006130e16129b9565b90506131018187876130f288613736565b6130fb88613736565b87613548565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f906158c2565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461324d9190614a75565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516132ca929190615a17565b60405180910390a46132e08288888888886137b0565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335090615ab2565b60405180910390fd5b60006133636129b9565b90506133848160008761337588613736565b61337e88613736565b87613548565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e39190614a75565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613461929190615a17565b60405180910390a4613478816000878787876137b0565b5050505050565b60008082905060005b84518110156135275760008582815181106134a6576134a5614f46565b5b602002602001015190508083116134e75782816040516020016134ca929190615af3565b604051602081830303815290604052805190602001209250613513565b80836040516020016134fa929190615af3565b6040516020818303038152906040528051906020012092505b50808061351f90614f75565b915050613488565b508091505092915050565b6001816000016000828254019250508190555050565b613556868686868686613988565b505050505050565b61357d8473ffffffffffffffffffffffffffffffffffffffff166139e6565b1561372e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016135c3959493929190615b74565b6020604051808303816000875af19250505080156135ff57506040513d601f19601f820116820180604052508101906135fc9190615bf1565b60015b6136a55761360b615c2b565b806308c379a014156136685750613620615c4d565b8061362b575061366a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365f9190613d76565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615d55565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461372c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372390615de7565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561375557613754613f04565b5b6040519080825280602002602001820160405280156137835781602001602082028036833780820191505090505b509050828160008151811061379b5761379a614f46565b5b60200260200101818152505080915050919050565b6137cf8473ffffffffffffffffffffffffffffffffffffffff166139e6565b15613980578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613815959493929190615e07565b6020604051808303816000875af192505050801561385157506040513d601f19601f8201168201806040525081019061384e9190615bf1565b60015b6138f75761385d615c2b565b806308c379a014156138ba5750613872615c4d565b8061387d57506138bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b19190613d76565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ee90615d55565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461397e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397590615de7565b60405180910390fd5b505b505050505050565b6139968686868686866139f9565b61399e611749565b156139de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d590615ed3565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b6040518060800160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b828054613a41906149a8565b90600052602060002090601f016020900481019282613a635760008555613aaa565b82601f10613a7c57805160ff1916838001178555613aaa565b82800160010185558215613aaa579182015b82811115613aa9578251825591602001919060010190613a8e565b5b509050613ab79190613abb565b5090565b5b80821115613ad4576000816000905550600101613abc565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1782613aec565b9050919050565b613b2781613b0c565b8114613b3257600080fd5b50565b600081359050613b4481613b1e565b92915050565b6000819050919050565b613b5d81613b4a565b8114613b6857600080fd5b50565b600081359050613b7a81613b54565b92915050565b60008060408385031215613b9757613b96613ae2565b5b6000613ba585828601613b35565b9250506020613bb685828601613b6b565b9150509250929050565b613bc981613b4a565b82525050565b6000602082019050613be46000830184613bc0565b92915050565b600061ffff82169050919050565b613c0181613bea565b82525050565b6000602082019050613c1c6000830184613bf8565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5781613c22565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b600060208284031215613c9057613c8f613ae2565b5b6000613c9e84828501613c65565b91505092915050565b60008115159050919050565b613cbc81613ca7565b82525050565b6000602082019050613cd76000830184613cb3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d17578082015181840152602081019050613cfc565b83811115613d26576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4882613cdd565b613d528185613ce8565b9350613d62818560208601613cf9565b613d6b81613d2c565b840191505092915050565b60006020820190508181036000830152613d908184613d3d565b905092915050565b600060ff82169050919050565b613dae81613d98565b8114613db957600080fd5b50565b600081359050613dcb81613da5565b92915050565b600060208284031215613de757613de6613ae2565b5b6000613df584828501613dbc565b91505092915050565b600060208284031215613e1457613e13613ae2565b5b6000613e2284828501613b6b565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e5057613e4f613e2b565b5b8235905067ffffffffffffffff811115613e6d57613e6c613e30565b5b602083019150836020820283011115613e8957613e88613e35565b5b9250929050565b60008060008060608587031215613eaa57613ea9613ae2565b5b6000613eb887828801613dbc565b9450506020613ec987828801613dbc565b935050604085013567ffffffffffffffff811115613eea57613ee9613ae7565b5b613ef687828801613e3a565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3c82613d2c565b810181811067ffffffffffffffff82111715613f5b57613f5a613f04565b5b80604052505050565b6000613f6e613ad8565b9050613f7a8282613f33565b919050565b600067ffffffffffffffff821115613f9a57613f99613f04565b5b602082029050602081019050919050565b6000613fbe613fb984613f7f565b613f64565b90508083825260208201905060208402830185811115613fe157613fe0613e35565b5b835b8181101561400a5780613ff68882613b6b565b845260208401935050602081019050613fe3565b5050509392505050565b600082601f83011261402957614028613e2b565b5b8135614039848260208601613fab565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406257614061613f04565b5b61406b82613d2c565b9050602081019050919050565b82818337600083830152505050565b600061409a61409584614047565b613f64565b9050828152602081018484840111156140b6576140b5614042565b5b6140c1848285614078565b509392505050565b600082601f8301126140de576140dd613e2b565b5b81356140ee848260208601614087565b91505092915050565b600080600080600060a0868803121561411357614112613ae2565b5b600061412188828901613b35565b955050602061413288828901613b35565b945050604086013567ffffffffffffffff81111561415357614152613ae7565b5b61415f88828901614014565b935050606086013567ffffffffffffffff8111156141805761417f613ae7565b5b61418c88828901614014565b925050608086013567ffffffffffffffff8111156141ad576141ac613ae7565b5b6141b9888289016140c9565b9150509295509295909350565b600080604083850312156141dd576141dc613ae2565b5b60006141eb85828601613dbc565b92505060206141fc85828601613dbc565b9150509250929050565b6000806040838503121561421d5761421c613ae2565b5b600061422b85828601613dbc565b925050602061423c85828601613b6b565b9150509250929050565b600067ffffffffffffffff82111561426157614260613f04565b5b602082029050602081019050919050565b600061428561428084614246565b613f64565b905080838252602082019050602084028301858111156142a8576142a7613e35565b5b835b818110156142d157806142bd8882613b35565b8452602084019350506020810190506142aa565b5050509392505050565b600082601f8301126142f0576142ef613e2b565b5b8135614300848260208601614272565b91505092915050565b600080604083850312156143205761431f613ae2565b5b600083013567ffffffffffffffff81111561433e5761433d613ae7565b5b61434a858286016142db565b925050602083013567ffffffffffffffff81111561436b5761436a613ae7565b5b61437785828601614014565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143b681613b4a565b82525050565b60006143c883836143ad565b60208301905092915050565b6000602082019050919050565b60006143ec82614381565b6143f6818561438c565b93506144018361439d565b8060005b8381101561443257815161441988826143bc565b9750614424836143d4565b925050600181019050614405565b5085935050505092915050565b6000602082019050818103600083015261445981846143e1565b905092915050565b600061446c82613aec565b9050919050565b61447c81614461565b811461448757600080fd5b50565b60008135905061449981614473565b92915050565b600080604083850312156144b6576144b5613ae2565b5b60006144c48582860161448a565b92505060206144d585828601613b6b565b9150509250929050565b6144e881613b0c565b82525050565b600060208201905061450360008301846144df565b92915050565b60008083601f84011261451f5761451e613e2b565b5b8235905067ffffffffffffffff81111561453c5761453b613e30565b5b60208301915083600182028301111561455857614557613e35565b5b9250929050565b6000806020838503121561457657614575613ae2565b5b600083013567ffffffffffffffff81111561459457614593613ae7565b5b6145a085828601614509565b92509250509250929050565b6145b581613ca7565b81146145c057600080fd5b50565b6000813590506145d2816145ac565b92915050565b600080604083850312156145ef576145ee613ae2565b5b60006145fd85828601613b35565b925050602061460e858286016145c3565b9150509250929050565b6000819050919050565b61462b81614618565b82525050565b60006020820190506146466000830184614622565b92915050565b61465581613bea565b82525050565b608082016000820151614671600085018261464c565b506020820151614684602085018261464c565b506040820151614697604085018261464c565b5060608201516146aa60608501826143ad565b50505050565b60006080820190506146c5600083018461465b565b92915050565b6146d481613bea565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000806040838503121561470e5761470d613ae2565b5b600061471c85828601613dbc565b925050602061472d858286016146e2565b9150509250929050565b61474081614618565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b60006020828403121561477957614778613ae2565b5b60006147878482850161474e565b91505092915050565b600080604083850312156147a7576147a6613ae2565b5b60006147b585828601613b35565b92505060206147c685828601613b35565b9150509250929050565b600080600080600060a086880312156147ec576147eb613ae2565b5b60006147fa88828901613b35565b955050602061480b88828901613b35565b945050604061481c88828901613b6b565b935050606061482d88828901613b6b565b925050608086013567ffffffffffffffff81111561484e5761484d613ae7565b5b61485a888289016140c9565b9150509295509295909350565b60006020828403121561487d5761487c613ae2565b5b600061488b84828501613b35565b91505092915050565b6000806000606084860312156148ad576148ac613ae2565b5b60006148bb86828701613dbc565b93505060206148cc868287016146e2565b92505060406148dd86828701613b35565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614943602b83613ce8565b915061494e826148e7565b604082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149c057607f821691505b602082108114156149d4576149d3614979565b5b50919050565b7f496e76616c69642052617269747952616e676520494400000000000000000000600082015250565b6000614a10601683613ce8565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a8082613b4a565b9150614a8b83613b4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ac057614abf614a46565b5b828201905092915050565b6000614ad682613b4a565b9150614ae183613b4a565b925082821015614af457614af3614a46565b5b828203905092915050565b7f50726573616c65206e6f74206f70656e65642e00000000000000000000000000600082015250565b6000614b35601383613ce8565b9150614b4082614aff565b602082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba1601083613ce8565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f416464726573732068617320616c726561647920636c61696d2e000000000000600082015250565b6000614c0d601a83613ce8565b9150614c1882614bd7565b602082019050919050565b60006020820190508181036000830152614c3c81614c00565b9050919050565b60008160601b9050919050565b6000614c5b82614c43565b9050919050565b6000614c6d82614c50565b9050919050565b614c85614c8082613b0c565b614c62565b82525050565b6000614c978284614c74565b60148201915081905092915050565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b6000614cdc601b83613ce8565b9150614ce782614ca6565b602082019050919050565b60006020820190508181036000830152614d0b81614ccf565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d6e603283613ce8565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dda602083613ce8565b9150614de582614da4565b602082019050919050565b60006020820190508181036000830152614e0981614dcd565b9050919050565b7f6d696e745072696365206d7573742062652067726561746572207468616e2030600082015250565b6000614e46602083613ce8565b9150614e5182614e10565b602082019050919050565b60006020820190508181036000830152614e7581614e39565b9050919050565b614e8581613d98565b82525050565b6000604082019050614ea06000830185614e7c565b614ead6020830184613bc0565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614f10602983613ce8565b9150614f1b82614eb4565b604082019050919050565b60006020820190508181036000830152614f3f81614f03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f8082613b4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb357614fb2614a46565b5b600182019050919050565b7f6d61785065725478206d7573742062652067726561746572207468616e203000600082015250565b6000614ff4601f83613ce8565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600081905092915050565b50565b600061504560008361502a565b915061505082615035565b600082019050919050565b600061506682615038565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b60006150a6601883613ce8565b91506150b182615070565b602082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e65642e000000000000000000600082015250565b6000615112601783613ce8565b915061511d826150dc565b602082019050919050565b6000602082019050818103600083015261514181615105565b9050919050565b600061515382613bea565b915061515e83613bea565b92508261ffff0382111561517557615174614a46565b5b828201905092915050565b7f5075626c696320737570706c7920646964206e6f74206368616e67652e000000600082015250565b60006151b6601d83613ce8565b91506151c182615180565b602082019050919050565b600060208201905081810360008301526151e5816151a9565b9050919050565b7f486967686572207468616e206d617820737570706c792e000000000000000000600082015250565b6000615222601783613ce8565b915061522d826151ec565b602082019050919050565b6000602082019050818103600083015261525181615215565b9050919050565b7f5075626c696320737570706c7920746f6f206c6f770000000000000000000000600082015250565b600061528e601583613ce8565b915061529982615258565b602082019050919050565b600060208201905081810360008301526152bd81615281565b9050919050565b60006060820190506152d96000830186614e7c565b6152e66020830185613bf8565b6152f36040830184613bf8565b949350505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000615357602983613ce8565b9150615362826152fb565b604082019050919050565b600060208201905081810360008301526153868161534a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153e9602683613ce8565b91506153f48261538d565b604082019050919050565b60006020820190508181036000830152615418816153dc565b9050919050565b7f43616c6c65722073686f756c64206e6f74206265206120636f6e74726163742e600082015250565b6000615455602083613ce8565b91506154608261541f565b602082019050919050565b6000602082019050818103600083015261548481615448565b9050919050565b7f546f6b656e2070726576696f75736c792077697468647261776e000000000000600082015250565b60006154c1601a83613ce8565b91506154cc8261548b565b602082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f546f6b656e204944206e6f7420656c696765626c6520666f7220636c61696d00600082015250565b600061552d601f83613ce8565b9150615538826154f7565b602082019050919050565b6000602082019050818103600083015261555c81615520565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b6000615599601183613ce8565b91506155a482615563565b602082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f496e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000615605600d83613ce8565b9150615610826155cf565b602082019050919050565b60006020820190508181036000830152615634816155f8565b9050919050565b600061564682613b4a565b915061565183613b4a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561568a57615689614a46565b5b828202905092915050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e740000600082015250565b60006156cb601e83613ce8565b91506156d682615695565b602082019050919050565b600060208201905081810360008301526156fa816156be565b9050919050565b600061570c82613bea565b915061ffff82141561572157615720614a46565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615788602883613ce8565b91506157938261572c565b604082019050919050565b600060208201905081810360008301526157b78161577b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061581a602583613ce8565b9150615825826157be565b604082019050919050565b600060208201905081810360008301526158498161580d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006158ac602a83613ce8565b91506158b782615850565b604082019050919050565b600060208201905081810360008301526158db8161589f565b9050919050565b600060408201905081810360008301526158fc81856143e1565b9050818103602083015261591081846143e1565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061594f601483613ce8565b915061595a82615919565b602082019050919050565b6000602082019050818103600083015261597e81615942565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006159e1602983613ce8565b91506159ec82615985565b604082019050919050565b60006020820190508181036000830152615a10816159d4565b9050919050565b6000604082019050615a2c6000830185613bc0565b615a396020830184613bc0565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a9c602183613ce8565b9150615aa782615a40565b604082019050919050565b60006020820190508181036000830152615acb81615a8f565b9050919050565b6000819050919050565b615aed615ae882614618565b615ad2565b82525050565b6000615aff8285615adc565b602082019150615b0f8284615adc565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000615b4682615b1f565b615b508185615b2a565b9350615b60818560208601613cf9565b615b6981613d2c565b840191505092915050565b600060a082019050615b8960008301886144df565b615b9660208301876144df565b8181036040830152615ba881866143e1565b90508181036060830152615bbc81856143e1565b90508181036080830152615bd08184615b3b565b90509695505050505050565b600081519050615beb81613c4e565b92915050565b600060208284031215615c0757615c06613ae2565b5b6000615c1584828501615bdc565b91505092915050565b60008160e01c9050919050565b600060033d1115615c4a5760046000803e615c47600051615c1e565b90505b90565b600060443d1015615c5d57615ce0565b615c65613ad8565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c8d575050615ce0565b808201805167ffffffffffffffff811115615cab5750505050615ce0565b80602083010160043d038501811115615cc8575050505050615ce0565b615cd782602001850186613f33565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615d3f603483613ce8565b9150615d4a82615ce3565b604082019050919050565b60006020820190508181036000830152615d6e81615d32565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615dd1602883613ce8565b9150615ddc82615d75565b604082019050919050565b60006020820190508181036000830152615e0081615dc4565b9050919050565b600060a082019050615e1c60008301886144df565b615e2960208301876144df565b615e366040830186613bc0565b615e436060830185613bc0565b8181036080830152615e558184615b3b565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000615ebd602c83613ce8565b9150615ec882615e61565b604082019050919050565b60006020820190508181036000830152615eec81615eb0565b905091905056fea26469706673582212204f3391f905054ee60ae43b7549d65f8cc95073056026564c7f1c621a15b6948564736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7777772e77696e636974792e636f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b57696e6369747950617269734772616e6465436861756d696572650000000000000000000000000000000000000000000000000000000000000000000000000a57696e6369747950474300000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102925760003560e01c80638a71bb2d1161015a578063bc94a45d116100c1578063e985e9c51161007a578063e985e9c5146109a8578063f242432a146109e5578063f2fde38b14610a0e578063f5bdcd0c14610a37578063f5d24c4f14610a74578063f8ede57914610a9f57610292565b8063bc94a45d146108aa578063bd32fb66146108d3578063c50ff818146108fc578063d3faf84e14610927578063d7822c9914610952578063e811fdea1461097d57610292565b8063a101ec2611610113578063a101ec26146107a7578063a22cb465146107c3578063a96784e4146107ec578063aa98e0c614610817578063aea92c7014610842578063b474596d1461086d57610292565b80638a71bb2d146106955780638da5cb5b146106c057806395d89b41146106eb5780639b642de1146107165780639f318b161461073f5780639fbc87131461077c57610292565b80632eb2c2d6116101fe5780635a43d818116101b75780635a43d818146105bf5780635c975abb146105ea5780636e34c79614610615578063715018a61461063e578063736fe565146106555780638456cb591461067e57610292565b80632eb2c2d6146104d457806335453da8146104fd5780633ec3e06d146105195780633f4ba83a146105425780634e1273f414610559578063511a96051461059657610292565b80630e89341c116102505780630e89341c146103cf57806312065fe01461040c57806318160ddd146104375780631a6949e3146104625780631b5f24301461048d5780631f281ace146104a957610292565b8062fdd58e1461029757806301d35173146102d457806301ffc9a7146102ff578063061ac1f71461033c57806306fdde03146103675780630e3e136414610392575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613b80565b610adc565b6040516102cb9190613bcf565b60405180910390f35b3480156102e057600080fd5b506102e9610ba5565b6040516102f69190613c07565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613c7a565b610bb9565b6040516103339190613cc2565b60405180910390f35b34801561034857600080fd5b50610351610c9b565b60405161035e9190613c07565b60405180910390f35b34801561037357600080fd5b5061037c610ca0565b6040516103899190613d76565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613dd1565b610d2e565b6040516103c69190613bcf565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfe565b610daa565b6040516104039190613d76565b60405180910390f35b34801561041857600080fd5b50610421610e3e565b60405161042e9190613bcf565b60405180910390f35b34801561044357600080fd5b5061044c610e46565b6040516104599190613bcf565b60405180910390f35b34801561046e57600080fd5b50610477610fb5565b6040516104849190613cc2565b60405180910390f35b6104a760048036038101906104a29190613e90565b610fd1565b005b3480156104b557600080fd5b506104be61120c565b6040516104cb9190613cc2565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906140f7565b611238565b005b610517600480360381019061051291906141c6565b6112d9565b005b34801561052557600080fd5b50610540600480360381019061053b9190614206565b6113ab565b005b34801561054e57600080fd5b5061055761151f565b005b34801561056557600080fd5b50610580600480360381019061057b9190614309565b6115a5565b60405161058d919061443f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190613dfe565b6116be565b005b3480156105cb57600080fd5b506105d4611744565b6040516105e19190613c07565b60405180910390f35b3480156105f657600080fd5b506105ff611749565b60405161060c9190613cc2565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613dd1565b611760565b005b34801561064a57600080fd5b50610653611845565b005b34801561066157600080fd5b5061067c6004803603810190610677919061449f565b6118cd565b005b34801561068a57600080fd5b506106936119fd565b005b3480156106a157600080fd5b506106aa611a83565b6040516106b79190613c07565b60405180910390f35b3480156106cc57600080fd5b506106d5611a97565b6040516106e291906144ee565b60405180910390f35b3480156106f757600080fd5b50610700611ac1565b60405161070d9190613d76565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061455f565b611b4f565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd1565b611c1c565b6040516107739190613cc2565b60405180910390f35b34801561078857600080fd5b50610791611c4d565b60405161079e91906144ee565b60405180910390f35b6107c160048036038101906107bc91906141c6565b611c73565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906145d8565b611d10565b005b3480156107f857600080fd5b50610801611d26565b60405161080e9190613c07565b60405180910390f35b34801561082357600080fd5b5061082c611d2b565b6040516108399190614631565b60405180910390f35b34801561084e57600080fd5b50610857611d31565b6040516108649190613c07565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613dd1565b611d36565b6040516108a191906146b0565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906146f7565b611e2a565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190614763565b612094565b005b34801561090857600080fd5b5061091161211a565b60405161091e9190613c07565b60405180910390f35b34801561093357600080fd5b5061093c612120565b6040516109499190613c07565b60405180910390f35b34801561095e57600080fd5b50610967612126565b6040516109749190613bcf565b60405180910390f35b34801561098957600080fd5b5061099261212c565b60405161099f9190613c07565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190614790565b612131565b6040516109dc9190613cc2565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a0791906147d0565b6121c5565b005b348015610a1a57600080fd5b50610a356004803603810190610a309190614867565b612266565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190614894565b61235e565b604051610a6b9190613bcf565b60405180910390f35b348015610a8057600080fd5b50610a896125e7565b604051610a969190613c07565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613dd1565b6125ec565b604051610ad39190613bcf565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614959565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660169054906101000a900461ffff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c945750610c9382612616565b5b9050919050565b606481565b60048054610cad906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd9906149a8565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b505050505081565b6000808260ff1610158015610d47575060038260ff1611155b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614a26565b60405180910390fd5b600860008360ff1660ff168152602001908152602001600020600101549050919050565b606060028054610db9906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906149a8565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b50505050509050919050565b600047905090565b600080610e536000611d36565b90506000610e616001611d36565b90506000610e6f6002611d36565b90506000610e7d6003611d36565b905060006001610ea1600a60008060ff168152602001908152602001600020612680565b610eab9190614a75565b905060006001610ed0600a6000600160ff168152602001908152602001600020612680565b610eda9190614a75565b905060006001610eff600a6000600260ff168152602001908152602001600020612680565b610f099190614a75565b905060006001610f2e600a6000600360ff168152602001908152602001600020612680565b610f389190614a75565b9050846000015161ffff1681610f4e9190614acb565b866000015161ffff1683610f629190614acb565b886000015161ffff1685610f769190614acb565b8a6000015161ffff1687610f8a9190614acb565b610f949190614a75565b610f9e9190614a75565b610fa89190614a75565b9850505050505050505090565b60006009544210158015610fcc5750600060095414155b905090565b610fd961120c565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614b4b565b60405180910390fd5b611020611749565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb7565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614c23565b60405180910390fd5b6000336040516020016111069190614c8b565b60405160208183030381529060405280519060200120905061116c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361268e565b6111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290614cf2565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050505061120585856126a5565b5050505050565b6000806009541161121e576000611233565b6201518060095461122f9190614acb565b4210155b905090565b6112406129b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112865750611285856112806129b9565b612131565b5b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90614d84565b60405180910390fd5b6112d285858585856129c1565b5050505050565b6112e1611749565b15611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614bb7565b60405180910390fd5b6113296129b9565b73ffffffffffffffffffffffffffffffffffffffff16611347611a97565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490614df0565b60405180910390fd5b6113a782826126a5565b5050565b6113b36129b9565b73ffffffffffffffffffffffffffffffffffffffff166113d1611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614df0565b60405180910390fd5b6000811161146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614e5c565b60405180910390fd5b60008260ff1610158015611482575060038260ff1611155b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890614a26565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020600101819055507f7c3597b21f39648603502ec9742c0fc04fbee88cc846e6ea40a3cb6f55f414578282604051611513929190614e8b565b60405180910390a15050565b6115276129b9565b73ffffffffffffffffffffffffffffffffffffffff16611545611a97565b73ffffffffffffffffffffffffffffffffffffffff161461159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614df0565b60405180910390fd5b6115a3612cd5565b565b606081518351146115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e290614f26565b60405180910390fd5b6000835167ffffffffffffffff81111561160857611607613f04565b5b6040519080825280602002602001820160405280156116365781602001602082028036833780820191505090505b50905060005b84518110156116b35761168385828151811061165b5761165a614f46565b5b602002602001015185838151811061167657611675614f46565b5b6020026020010151610adc565b82828151811061169657611695614f46565b5b602002602001018181525050806116ac90614f75565b905061163c565b508091505092915050565b6116c66129b9565b73ffffffffffffffffffffffffffffffffffffffff166116e4611a97565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614df0565b60405180910390fd5b8060098190555050565b600181565b6000600360009054906101000a900460ff16905090565b6117686129b9565b73ffffffffffffffffffffffffffffffffffffffff16611786611a97565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390614df0565b60405180910390fd5b60008160ff1611611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061500a565b60405180910390fd5b8060ff16600660166101000a81548161ffff021916908361ffff16021790555050565b61184d6129b9565b73ffffffffffffffffffffffffffffffffffffffff1661186b611a97565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614df0565b60405180910390fd5b6118cb6000612d77565b565b6118d56129b9565b73ffffffffffffffffffffffffffffffffffffffff166118f3611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614df0565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff16836040516119709061505b565b60006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b5091509150816119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906150bc565b60405180910390fd5b50505050565b611a056129b9565b73ffffffffffffffffffffffffffffffffffffffff16611a23611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614df0565b60405180910390fd5b611a81612e3d565b565b600660009054906101000a900461ffff1681565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054611ace906149a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611afa906149a8565b8015611b475780601f10611b1c57610100808354040283529160200191611b47565b820191906000526020600020905b815481529060010190602001808311611b2a57829003601f168201915b505050505081565b611b576129b9565b73ffffffffffffffffffffffffffffffffffffffff16611b75611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290614df0565b60405180910390fd5b611c1882828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ee0565b5050565b6000600b60008360ff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c7b610fb5565b611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190615128565b60405180910390fd5b611cc2611749565b15611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990614bb7565b60405180910390fd5b611d0c82826126a5565b5050565b611d22611d1b6129b9565b8383612efa565b5050565b600a81565b60075481565b606481565b611d3e613a01565b60008260ff1610158015611d56575060038260ff1611155b611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614a26565b60405180910390fd5b600860008360ff1660ff1681526020019081526020016000206040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b611e326129b9565b73ffffffffffffffffffffffffffffffffffffffff16611e50611a97565b73ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614df0565b60405180910390fd5b60008260ff1610158015611ebe575060038260ff1611155b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614a26565b60405180910390fd5b6000611f0883611d36565b90506000828260000151611f1c9190615148565b9050816040015161ffff168161ffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f64906151cc565b60405180910390fd5b60018260200151611f7e9190615148565b61ffff168161ffff161115611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90615238565b60405180910390fd5b6000611fd3856125ec565b90508161ffff16811061201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906152a4565b60405180910390fd5b81600860008760ff1660ff16815260200190815260200160002060000160046101000a81548161ffff021916908361ffff1602179055507fe9da5d67aab9f197f7c9df5e5e1ff6ea4130a6674b1d0505f055d40a561bf6cc858584604051612085939291906152c4565b60405180910390a15050505050565b61209c6129b9565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a97565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614df0565b60405180910390fd5b8060078190555050565b6103e881565b6103e881565b60095481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121cd6129b9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061221357506122128561220d6129b9565b612131565b5b612252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122499061536d565b60405180910390fd5b61225f8585858585613067565b5050505050565b61226e6129b9565b73ffffffffffffffffffffffffffffffffffffffff1661228c611a97565b73ffffffffffffffffffffffffffffffffffffffff16146122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990614df0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612349906153ff565b60405180910390fd5b61235b81612d77565b50565b60006123686129b9565b73ffffffffffffffffffffffffffffffffffffffff16612386611a97565b73ffffffffffffffffffffffffffffffffffffffff16146123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614df0565b60405180910390fd5b60008460ff16101580156123f4575060038460ff1611155b612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614a26565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124989061546b565b60405180910390fd5b60001515600b60008561ffff1661ffff16815260200190815260200160002060009054906101000a900460ff16151514612510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612507906154d7565b60405180910390fd5b600061251b85611d36565b9050806040015161ffff168461ffff16101580156125455750806020015161ffff168461ffff1611155b612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90615543565b60405180910390fd5b6001600b60008661ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125d8838561ffff166001604051806020016040528060008152506132e9565b8361ffff169150509392505050565b600181565b600061260f600a60008460ff1660ff168152602001908152602001600020612680565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60008261269b858461347f565b1490509392505050565b6126ad611749565b156126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e490614bb7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461275b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127529061546b565b60405180910390fd5b60008260ff1610158015612773575060038260ff1611155b6127b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a990614a26565b60405180910390fd5b60006127bd83611d36565b9050806040015161ffff168260ff166127ed600a60008760ff1660ff168152602001908152602001600020612680565b6127f79190614a75565b10612837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282e906155af565b60405180910390fd5b60008260ff161180156128615750600660169054906101000a900461ffff1661ffff168260ff1611155b6128a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128979061561b565b60405180910390fd5b3481606001518360ff166128b4919061563b565b14806128f257506128c3611a97565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612928906156e1565b60405180910390fd5b60005b8260ff168161ffff1610156129b357612964600a60008660ff1660ff168152602001908152602001600020613532565b6129a033612989600a60008860ff1660ff168152602001908152602001600020612680565b6001604051806020016040528060008152506132e9565b80806129ab90615701565b915050612934565b50505050565b600033905090565b8151835114612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061579e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c90615830565b60405180910390fd5b6000612a7f6129b9565b9050612a8f818787878787613548565b60005b8451811015612c40576000858281518110612ab057612aaf614f46565b5b602002602001015190506000858381518110612acf57612ace614f46565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b67906158c2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c259190614a75565b9250508190555050505080612c3990614f75565b9050612a92565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb79291906158e2565b60405180910390a4612ccd81878787878761355e565b505050505050565b612cdd611749565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390615965565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d606129b9565b604051612d6d91906144ee565b60405180910390a1565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e45611749565b15612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614bb7565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ec96129b9565b604051612ed691906144ee565b60405180910390a1565b8060029080519060200190612ef6929190613a35565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f60906159f7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161305a9190613cc2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615830565b60405180910390fd5b60006130e16129b9565b90506131018187876130f288613736565b6130fb88613736565b87613548565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f906158c2565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461324d9190614a75565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516132ca929190615a17565b60405180910390a46132e08288888888886137b0565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335090615ab2565b60405180910390fd5b60006133636129b9565b90506133848160008761337588613736565b61337e88613736565b87613548565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e39190614a75565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613461929190615a17565b60405180910390a4613478816000878787876137b0565b5050505050565b60008082905060005b84518110156135275760008582815181106134a6576134a5614f46565b5b602002602001015190508083116134e75782816040516020016134ca929190615af3565b604051602081830303815290604052805190602001209250613513565b80836040516020016134fa929190615af3565b6040516020818303038152906040528051906020012092505b50808061351f90614f75565b915050613488565b508091505092915050565b6001816000016000828254019250508190555050565b613556868686868686613988565b505050505050565b61357d8473ffffffffffffffffffffffffffffffffffffffff166139e6565b1561372e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016135c3959493929190615b74565b6020604051808303816000875af19250505080156135ff57506040513d601f19601f820116820180604052508101906135fc9190615bf1565b60015b6136a55761360b615c2b565b806308c379a014156136685750613620615c4d565b8061362b575061366a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365f9190613d76565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615d55565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461372c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372390615de7565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561375557613754613f04565b5b6040519080825280602002602001820160405280156137835781602001602082028036833780820191505090505b509050828160008151811061379b5761379a614f46565b5b60200260200101818152505080915050919050565b6137cf8473ffffffffffffffffffffffffffffffffffffffff166139e6565b15613980578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613815959493929190615e07565b6020604051808303816000875af192505050801561385157506040513d601f19601f8201168201806040525081019061384e9190615bf1565b60015b6138f75761385d615c2b565b806308c379a014156138ba5750613872615c4d565b8061387d57506138bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b19190613d76565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ee90615d55565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461397e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397590615de7565b60405180910390fd5b505b505050505050565b6139968686868686866139f9565b61399e611749565b156139de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d590615ed3565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b6040518060800160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b828054613a41906149a8565b90600052602060002090601f016020900481019282613a635760008555613aaa565b82601f10613a7c57805160ff1916838001178555613aaa565b82800160010185558215613aaa579182015b82811115613aa9578251825591602001919060010190613a8e565b5b509050613ab79190613abb565b5090565b5b80821115613ad4576000816000905550600101613abc565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1782613aec565b9050919050565b613b2781613b0c565b8114613b3257600080fd5b50565b600081359050613b4481613b1e565b92915050565b6000819050919050565b613b5d81613b4a565b8114613b6857600080fd5b50565b600081359050613b7a81613b54565b92915050565b60008060408385031215613b9757613b96613ae2565b5b6000613ba585828601613b35565b9250506020613bb685828601613b6b565b9150509250929050565b613bc981613b4a565b82525050565b6000602082019050613be46000830184613bc0565b92915050565b600061ffff82169050919050565b613c0181613bea565b82525050565b6000602082019050613c1c6000830184613bf8565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5781613c22565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b600060208284031215613c9057613c8f613ae2565b5b6000613c9e84828501613c65565b91505092915050565b60008115159050919050565b613cbc81613ca7565b82525050565b6000602082019050613cd76000830184613cb3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d17578082015181840152602081019050613cfc565b83811115613d26576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4882613cdd565b613d528185613ce8565b9350613d62818560208601613cf9565b613d6b81613d2c565b840191505092915050565b60006020820190508181036000830152613d908184613d3d565b905092915050565b600060ff82169050919050565b613dae81613d98565b8114613db957600080fd5b50565b600081359050613dcb81613da5565b92915050565b600060208284031215613de757613de6613ae2565b5b6000613df584828501613dbc565b91505092915050565b600060208284031215613e1457613e13613ae2565b5b6000613e2284828501613b6b565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e5057613e4f613e2b565b5b8235905067ffffffffffffffff811115613e6d57613e6c613e30565b5b602083019150836020820283011115613e8957613e88613e35565b5b9250929050565b60008060008060608587031215613eaa57613ea9613ae2565b5b6000613eb887828801613dbc565b9450506020613ec987828801613dbc565b935050604085013567ffffffffffffffff811115613eea57613ee9613ae7565b5b613ef687828801613e3a565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3c82613d2c565b810181811067ffffffffffffffff82111715613f5b57613f5a613f04565b5b80604052505050565b6000613f6e613ad8565b9050613f7a8282613f33565b919050565b600067ffffffffffffffff821115613f9a57613f99613f04565b5b602082029050602081019050919050565b6000613fbe613fb984613f7f565b613f64565b90508083825260208201905060208402830185811115613fe157613fe0613e35565b5b835b8181101561400a5780613ff68882613b6b565b845260208401935050602081019050613fe3565b5050509392505050565b600082601f83011261402957614028613e2b565b5b8135614039848260208601613fab565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406257614061613f04565b5b61406b82613d2c565b9050602081019050919050565b82818337600083830152505050565b600061409a61409584614047565b613f64565b9050828152602081018484840111156140b6576140b5614042565b5b6140c1848285614078565b509392505050565b600082601f8301126140de576140dd613e2b565b5b81356140ee848260208601614087565b91505092915050565b600080600080600060a0868803121561411357614112613ae2565b5b600061412188828901613b35565b955050602061413288828901613b35565b945050604086013567ffffffffffffffff81111561415357614152613ae7565b5b61415f88828901614014565b935050606086013567ffffffffffffffff8111156141805761417f613ae7565b5b61418c88828901614014565b925050608086013567ffffffffffffffff8111156141ad576141ac613ae7565b5b6141b9888289016140c9565b9150509295509295909350565b600080604083850312156141dd576141dc613ae2565b5b60006141eb85828601613dbc565b92505060206141fc85828601613dbc565b9150509250929050565b6000806040838503121561421d5761421c613ae2565b5b600061422b85828601613dbc565b925050602061423c85828601613b6b565b9150509250929050565b600067ffffffffffffffff82111561426157614260613f04565b5b602082029050602081019050919050565b600061428561428084614246565b613f64565b905080838252602082019050602084028301858111156142a8576142a7613e35565b5b835b818110156142d157806142bd8882613b35565b8452602084019350506020810190506142aa565b5050509392505050565b600082601f8301126142f0576142ef613e2b565b5b8135614300848260208601614272565b91505092915050565b600080604083850312156143205761431f613ae2565b5b600083013567ffffffffffffffff81111561433e5761433d613ae7565b5b61434a858286016142db565b925050602083013567ffffffffffffffff81111561436b5761436a613ae7565b5b61437785828601614014565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143b681613b4a565b82525050565b60006143c883836143ad565b60208301905092915050565b6000602082019050919050565b60006143ec82614381565b6143f6818561438c565b93506144018361439d565b8060005b8381101561443257815161441988826143bc565b9750614424836143d4565b925050600181019050614405565b5085935050505092915050565b6000602082019050818103600083015261445981846143e1565b905092915050565b600061446c82613aec565b9050919050565b61447c81614461565b811461448757600080fd5b50565b60008135905061449981614473565b92915050565b600080604083850312156144b6576144b5613ae2565b5b60006144c48582860161448a565b92505060206144d585828601613b6b565b9150509250929050565b6144e881613b0c565b82525050565b600060208201905061450360008301846144df565b92915050565b60008083601f84011261451f5761451e613e2b565b5b8235905067ffffffffffffffff81111561453c5761453b613e30565b5b60208301915083600182028301111561455857614557613e35565b5b9250929050565b6000806020838503121561457657614575613ae2565b5b600083013567ffffffffffffffff81111561459457614593613ae7565b5b6145a085828601614509565b92509250509250929050565b6145b581613ca7565b81146145c057600080fd5b50565b6000813590506145d2816145ac565b92915050565b600080604083850312156145ef576145ee613ae2565b5b60006145fd85828601613b35565b925050602061460e858286016145c3565b9150509250929050565b6000819050919050565b61462b81614618565b82525050565b60006020820190506146466000830184614622565b92915050565b61465581613bea565b82525050565b608082016000820151614671600085018261464c565b506020820151614684602085018261464c565b506040820151614697604085018261464c565b5060608201516146aa60608501826143ad565b50505050565b60006080820190506146c5600083018461465b565b92915050565b6146d481613bea565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000806040838503121561470e5761470d613ae2565b5b600061471c85828601613dbc565b925050602061472d858286016146e2565b9150509250929050565b61474081614618565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b60006020828403121561477957614778613ae2565b5b60006147878482850161474e565b91505092915050565b600080604083850312156147a7576147a6613ae2565b5b60006147b585828601613b35565b92505060206147c685828601613b35565b9150509250929050565b600080600080600060a086880312156147ec576147eb613ae2565b5b60006147fa88828901613b35565b955050602061480b88828901613b35565b945050604061481c88828901613b6b565b935050606061482d88828901613b6b565b925050608086013567ffffffffffffffff81111561484e5761484d613ae7565b5b61485a888289016140c9565b9150509295509295909350565b60006020828403121561487d5761487c613ae2565b5b600061488b84828501613b35565b91505092915050565b6000806000606084860312156148ad576148ac613ae2565b5b60006148bb86828701613dbc565b93505060206148cc868287016146e2565b92505060406148dd86828701613b35565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614943602b83613ce8565b915061494e826148e7565b604082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149c057607f821691505b602082108114156149d4576149d3614979565b5b50919050565b7f496e76616c69642052617269747952616e676520494400000000000000000000600082015250565b6000614a10601683613ce8565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a8082613b4a565b9150614a8b83613b4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ac057614abf614a46565b5b828201905092915050565b6000614ad682613b4a565b9150614ae183613b4a565b925082821015614af457614af3614a46565b5b828203905092915050565b7f50726573616c65206e6f74206f70656e65642e00000000000000000000000000600082015250565b6000614b35601383613ce8565b9150614b4082614aff565b602082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba1601083613ce8565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f416464726573732068617320616c726561647920636c61696d2e000000000000600082015250565b6000614c0d601a83613ce8565b9150614c1882614bd7565b602082019050919050565b60006020820190508181036000830152614c3c81614c00565b9050919050565b60008160601b9050919050565b6000614c5b82614c43565b9050919050565b6000614c6d82614c50565b9050919050565b614c85614c8082613b0c565b614c62565b82525050565b6000614c978284614c74565b60148201915081905092915050565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b6000614cdc601b83613ce8565b9150614ce782614ca6565b602082019050919050565b60006020820190508181036000830152614d0b81614ccf565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d6e603283613ce8565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dda602083613ce8565b9150614de582614da4565b602082019050919050565b60006020820190508181036000830152614e0981614dcd565b9050919050565b7f6d696e745072696365206d7573742062652067726561746572207468616e2030600082015250565b6000614e46602083613ce8565b9150614e5182614e10565b602082019050919050565b60006020820190508181036000830152614e7581614e39565b9050919050565b614e8581613d98565b82525050565b6000604082019050614ea06000830185614e7c565b614ead6020830184613bc0565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614f10602983613ce8565b9150614f1b82614eb4565b604082019050919050565b60006020820190508181036000830152614f3f81614f03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f8082613b4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb357614fb2614a46565b5b600182019050919050565b7f6d61785065725478206d7573742062652067726561746572207468616e203000600082015250565b6000614ff4601f83613ce8565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600081905092915050565b50565b600061504560008361502a565b915061505082615035565b600082019050919050565b600061506682615038565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b60006150a6601883613ce8565b91506150b182615070565b602082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e65642e000000000000000000600082015250565b6000615112601783613ce8565b915061511d826150dc565b602082019050919050565b6000602082019050818103600083015261514181615105565b9050919050565b600061515382613bea565b915061515e83613bea565b92508261ffff0382111561517557615174614a46565b5b828201905092915050565b7f5075626c696320737570706c7920646964206e6f74206368616e67652e000000600082015250565b60006151b6601d83613ce8565b91506151c182615180565b602082019050919050565b600060208201905081810360008301526151e5816151a9565b9050919050565b7f486967686572207468616e206d617820737570706c792e000000000000000000600082015250565b6000615222601783613ce8565b915061522d826151ec565b602082019050919050565b6000602082019050818103600083015261525181615215565b9050919050565b7f5075626c696320737570706c7920746f6f206c6f770000000000000000000000600082015250565b600061528e601583613ce8565b915061529982615258565b602082019050919050565b600060208201905081810360008301526152bd81615281565b9050919050565b60006060820190506152d96000830186614e7c565b6152e66020830185613bf8565b6152f36040830184613bf8565b949350505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000615357602983613ce8565b9150615362826152fb565b604082019050919050565b600060208201905081810360008301526153868161534a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153e9602683613ce8565b91506153f48261538d565b604082019050919050565b60006020820190508181036000830152615418816153dc565b9050919050565b7f43616c6c65722073686f756c64206e6f74206265206120636f6e74726163742e600082015250565b6000615455602083613ce8565b91506154608261541f565b602082019050919050565b6000602082019050818103600083015261548481615448565b9050919050565b7f546f6b656e2070726576696f75736c792077697468647261776e000000000000600082015250565b60006154c1601a83613ce8565b91506154cc8261548b565b602082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f546f6b656e204944206e6f7420656c696765626c6520666f7220636c61696d00600082015250565b600061552d601f83613ce8565b9150615538826154f7565b602082019050919050565b6000602082019050818103600083015261555c81615520565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b6000615599601183613ce8565b91506155a482615563565b602082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f496e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000615605600d83613ce8565b9150615610826155cf565b602082019050919050565b60006020820190508181036000830152615634816155f8565b9050919050565b600061564682613b4a565b915061565183613b4a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561568a57615689614a46565b5b828202905092915050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e740000600082015250565b60006156cb601e83613ce8565b91506156d682615695565b602082019050919050565b600060208201905081810360008301526156fa816156be565b9050919050565b600061570c82613bea565b915061ffff82141561572157615720614a46565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615788602883613ce8565b91506157938261572c565b604082019050919050565b600060208201905081810360008301526157b78161577b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061581a602583613ce8565b9150615825826157be565b604082019050919050565b600060208201905081810360008301526158498161580d565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006158ac602a83613ce8565b91506158b782615850565b604082019050919050565b600060208201905081810360008301526158db8161589f565b9050919050565b600060408201905081810360008301526158fc81856143e1565b9050818103602083015261591081846143e1565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061594f601483613ce8565b915061595a82615919565b602082019050919050565b6000602082019050818103600083015261597e81615942565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006159e1602983613ce8565b91506159ec82615985565b604082019050919050565b60006020820190508181036000830152615a10816159d4565b9050919050565b6000604082019050615a2c6000830185613bc0565b615a396020830184613bc0565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a9c602183613ce8565b9150615aa782615a40565b604082019050919050565b60006020820190508181036000830152615acb81615a8f565b9050919050565b6000819050919050565b615aed615ae882614618565b615ad2565b82525050565b6000615aff8285615adc565b602082019150615b0f8284615adc565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000615b4682615b1f565b615b508185615b2a565b9350615b60818560208601613cf9565b615b6981613d2c565b840191505092915050565b600060a082019050615b8960008301886144df565b615b9660208301876144df565b8181036040830152615ba881866143e1565b90508181036060830152615bbc81856143e1565b90508181036080830152615bd08184615b3b565b90509695505050505050565b600081519050615beb81613c4e565b92915050565b600060208284031215615c0757615c06613ae2565b5b6000615c1584828501615bdc565b91505092915050565b60008160e01c9050919050565b600060033d1115615c4a5760046000803e615c47600051615c1e565b90505b90565b600060443d1015615c5d57615ce0565b615c65613ad8565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c8d575050615ce0565b808201805167ffffffffffffffff811115615cab5750505050615ce0565b80602083010160043d038501811115615cc8575050505050615ce0565b615cd782602001850186613f33565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615d3f603483613ce8565b9150615d4a82615ce3565b604082019050919050565b60006020820190508181036000830152615d6e81615d32565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615dd1602883613ce8565b9150615ddc82615d75565b604082019050919050565b60006020820190508181036000830152615e0081615dc4565b9050919050565b600060a082019050615e1c60008301886144df565b615e2960208301876144df565b615e366040830186613bc0565b615e436060830185613bc0565b8181036080830152615e558184615b3b565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000615ebd602c83613ce8565b9150615ec882615e61565b604082019050919050565b60006020820190508181036000830152615eec81615eb0565b905091905056fea26469706673582212204f3391f905054ee60ae43b7549d65f8cc95073056026564c7f1c621a15b6948564736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7777772e77696e636974792e636f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b57696e6369747950617269734772616e6465436861756d696572650000000000000000000000000000000000000000000000000000000000000000000000000a57696e6369747950474300000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): https://www.wincity.co/api/metadata/
Arg [1] : _name (string): WincityParisGrandeChaumiere
Arg [2] : _symbol (string): WincityPGC
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [4] : 68747470733a2f2f7777772e77696e636974792e636f2f6170692f6d65746164
Arg [5] : 6174612f00000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [7] : 57696e6369747950617269734772616e6465436861756d696572650000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 57696e6369747950474300000000000000000000000000000000000000000000
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.