Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,412 plb
Holders
443
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 plbLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixilbearsContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-19 */ //*********************************************************************// //*********************************************************************// // // // _ _ __ ____ // ____ (_) __(_) / / __ )___ ____ ______ // / __ \/ / |/_/ / / / __ / _ \/ __ `/ ___/ // / /_/ / /> </ / / / /_/ / __/ /_/ / / // / .___/_/_/|_/_/_/ /_____/\___/\__,_/_/ // /_/ // // //*********************************************************************// //*********************************************************************// //-------------DEPENDENCIES--------------------------// // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if account is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, isContract will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on isContract to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's transfer: sends amount wei to * recipient, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by transfer, making them unable to receive funds via * transfer. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to recipient, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level call. A * plain call is an unsafe replacement for a function call: use this * function instead. * * If target reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode]. * * Requirements: * * - target must be a contract. * - calling target with data must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with * errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but also transferring value wei to target. * * Requirements: * * - the calling contract must have an ETH balance of at least value. * - the called Solidity function must be payable. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but * with errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} tokenId token is transferred to this contract via {IERC721-safeTransferFrom} * by operator from from, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with IERC721.onERC721Received.selector. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * interfaceId. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when tokenId token is transferred from from to to. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when owner enables approved to manage the tokenId token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when owner enables or disables (approved) operator to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in owner's account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the tokenId token. * * Requirements: * * - tokenId must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers tokenId token from from to to, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers tokenId token from from to to. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to to to transfer tokenId token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - tokenId must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for tokenId token. * * Requirements: * * - tokenId must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove operator as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The operator cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the operator is allowed to manage all of the assets of owner. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers tokenId token from from to to. * * Requirements: * * - from cannot be the zero address. * - to cannot be the zero address. * - tokenId token must exist and be owned by from. * - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by owner at a given index of its token list. * Use along with {balanceOf} to enumerate all of owner's tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given index of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for tokenId token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from ReentrancyGuard will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single nonReentrant guard, functions marked as * nonReentrant may not call one another. This can be worked around by making * those functions private, and then adding external nonReentrant entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a nonReentrant function from another nonReentrant * function is not supported. It is possible to prevent this from happening * by making the nonReentrant function external, and making it call a * private function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * onlyOwner, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; 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); } } //-------------END DEPENDENCIES------------------------// // Rampp Contracts v2.1 (Teams.sol) pragma solidity ^0.8.0; /** * Teams is a contract implementation to extend upon Ownable that allows multiple controllers * of a single contract to modify specific mint settings but not have overall ownership of the contract. * This will easily allow cross-collaboration via Mintplex.xyz. **/ abstract contract Teams is Ownable{ mapping (address => bool) internal team; /** * @dev Adds an address to the team. Allows them to execute protected functions * @param _address the ETH address to add, cannot be 0x and cannot be in team already **/ function addToTeam(address _address) public onlyOwner { require(_address != address(0), "Invalid address"); require(!inTeam(_address), "This address is already in your team."); team[_address] = true; } /** * @dev Removes an address to the team. * @param _address the ETH address to remove, cannot be 0x and must be in team **/ function removeFromTeam(address _address) public onlyOwner { require(_address != address(0), "Invalid address"); require(inTeam(_address), "This address is not in your team currently."); team[_address] = false; } /** * @dev Check if an address is valid and active in the team * @param _address ETH address to check for truthiness **/ function inTeam(address _address) public view returns (bool) { require(_address != address(0), "Invalid address to check."); return team[_address] == true; } /** * @dev Throws if called by any account other than the owner or team member. */ modifier onlyTeamOrOwner() { bool _isOwner = owner() == _msgSender(); bool _isTeam = inTeam(_msgSender()); require(_isOwner || _isTeam, "Team: caller is not the owner or in Team."); _; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Teams { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex; uint256 public immutable collectionSize; uint256 public maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /* @dev Mapping of restricted operator approvals set by contract Owner * This serves as an optional addition to ERC-721 so * that the contract owner can elect to prevent specific addresses/contracts * from being marked as the approver for a token. The reason for this * is that some projects may want to retain control of where their tokens can/can not be listed * either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace. * By default, there are no restrictions. The contract owner must deliberatly block an address */ mapping(address => bool) public restrictedApprovalAddresses; /** * @dev * maxBatchSize refers to how much a minter can mint at a time. * collectionSize_ refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalMinted(); } function currentTokenId() public view returns (uint256) { return _totalMinted(); } function getNextTokenId() public view returns (uint256) { return _totalMinted() + 1; } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return currentIndex - _startTokenId(); } } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the baseURI and the tokenId. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev Sets the value for an address to be in the restricted approval address pool. * Setting an address to true will disable token owners from being able to mark the address * for approval for trading. This would be used in theory to prevent token owners from listing * on specific marketplaces or protcols. Only modifible by the contract owner/team. * @param _address the marketplace/user to modify restriction status of * @param _isRestricted restriction status of the _address to be set. true => Restricted, false => Open */ function setApprovalRestriction(address _address, bool _isRestricted) public onlyTeamOrOwner { restrictedApprovalAddresses[_address] = _isRestricted; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require(restrictedApprovalAddresses[to] == false, "ERC721RestrictedApproval: Address to approve has been restricted by contract owner and is not allowed to be marked for approval"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); require(restrictedApprovalAddresses[operator] == false, "ERC721RestrictedApproval: Operator address has been restricted by contract owner and is not allowed to be marked for approval"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether tokenId exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (_mint), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < currentIndex; } function _safeMint(address to, uint256 quantity, bool isAdminMint) internal { _safeMint(to, quantity, isAdminMint, ""); } /** * @dev Mints quantity tokens and transfers them to to. * * Requirements: * * - there must be quantity tokens remaining unminted in the total collection. * - to cannot be the zero address. * - quantity cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bool isAdminMint, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); // For admin mints we do not want to enforce the maxBatchSize limit if (isAdminMint == false) { require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); } _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity)) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers tokenId from from to to. * * Requirements: * * - to cannot be the zero address. * - tokenId token must be owned by from. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve to to operate on tokenId * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set owners to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet'); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When from and to are both non-zero, from's tokenId will be * transferred to to. * - When from is zero, tokenId will be minted for to. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when from and to are both non-zero. * - from and to are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ramppable { address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1; modifier isRampp() { require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP"); _; } } interface IERC20 { function allowance(address owner, address spender) external view returns (uint256); function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: WithdrawableV2 // This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints. // ERC-20 Payouts are limited to a single payout address. This feature // will charge a small flat fee in native currency that is not subject to regular rev sharing. // This contract also covers the normal functionality of accepting native base currency rev-sharing abstract contract WithdrawableV2 is Teams, Ramppable { struct acceptedERC20 { bool isActive; uint256 chargeAmount; } mapping(address => acceptedERC20) private allowedTokenContracts; address[] public payableAddresses = [RAMPPADDRESS,0x5cCa867939aA9CBbd8757339659bfDbf3948091B,0x92BdA736aD0c8be95e0a0930d840e8da198Be041]; address[] public surchargePayableAddresses = [RAMPPADDRESS]; address public erc20Payable = 0x92BdA736aD0c8be95e0a0930d840e8da198Be041; uint256[] public payableFees = [1,4,95]; uint256[] public surchargePayableFees = [100]; uint256 public payableAddressCount = 3; uint256 public surchargePayableAddressCount = 1; uint256 public ramppSurchargeBalance = 0 ether; uint256 public ramppSurchargeFee = 0.001 ether; bool public onlyERC20MintingMode = false; /** * @dev Calculates the true payable balance of the contract as the * value on contract may be from ERC-20 mint surcharges and not * public mint charges - which are not eligable for rev share & user withdrawl */ function calcAvailableBalance() public view returns(uint256) { return address(this).balance - ramppSurchargeBalance; } function withdrawAll() public onlyTeamOrOwner { require(calcAvailableBalance() > 0); _withdrawAll(); } function withdrawAllRampp() public isRampp { require(calcAvailableBalance() > 0); _withdrawAll(); } function _withdrawAll() private { uint256 balance = calcAvailableBalance(); for(uint i=0; i < payableAddressCount; i++ ) { _widthdraw( payableAddresses[i], (balance * payableFees[i]) / 100 ); } } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } /** * @dev This function is similiar to the regular withdraw but operates only on the * balance that is available to surcharge payout addresses. This would be Rampp + partners **/ function _withdrawAllSurcharges() private { uint256 balance = ramppSurchargeBalance; if(balance == 0) { return; } for(uint i=0; i < surchargePayableAddressCount; i++ ) { _widthdraw( surchargePayableAddresses[i], (balance * surchargePayableFees[i]) / 100 ); } ramppSurchargeBalance = 0 ether; } /** * @dev Allow contract owner to withdraw ERC-20 balance from contract * in the event ERC-20 tokens are paid to the contract for mints. This will * send the tokens to the payout as well as payout the surcharge fee to Rampp * @param _tokenContract contract of ERC-20 token to withdraw * @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei */ function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner { require(_amountToWithdraw > 0); IERC20 tokenContract = IERC20(_tokenContract); require(tokenContract.balanceOf(address(this)) >= _amountToWithdraw, "WithdrawV2: Contract does not own enough tokens"); tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient _withdrawAllSurcharges(); } /** * @dev Allow Rampp to be able to withdraw only its ERC-20 payment surcharges from the contract. */ function withdrawRamppSurcharges() public isRampp { require(ramppSurchargeBalance > 0, "WithdrawableV2: No Rampp surcharges in balance."); _withdrawAllSurcharges(); } /** * @dev Helper function to increment Rampp surcharge balance when ERC-20 payment is made. */ function addSurcharge() internal { ramppSurchargeBalance += ramppSurchargeFee; } /** * @dev Helper function to enforce Rampp surcharge fee when ERC-20 mint is made. */ function hasSurcharge() internal returns(bool) { return msg.value == ramppSurchargeFee; } /** * @dev Set surcharge fee for using ERC-20 payments on contract * @param _newSurcharge is the new surcharge value of native currency in wei to facilitate ERC-20 payments */ function setRamppSurcharge(uint256 _newSurcharge) public isRampp { ramppSurchargeFee = _newSurcharge; } /** * @dev check if an ERC-20 contract is a valid payable contract for executing a mint. * @param _erc20TokenContract address of ERC-20 contract in question */ function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) { return allowedTokenContracts[_erc20TokenContract].isActive == true; } /** * @dev get the value of tokens to transfer for user of an ERC-20 * @param _erc20TokenContract address of ERC-20 contract in question */ function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) { require(isApprovedForERC20Payments(_erc20TokenContract), "This ERC-20 contract is not approved to make payments on this contract!"); return allowedTokenContracts[_erc20TokenContract].chargeAmount; } /** * @dev Explicity sets and ERC-20 contract as an allowed payment method for minting * @param _erc20TokenContract address of ERC-20 contract in question * @param _isActive default status of if contract should be allowed to accept payments * @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token */ function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = _isActive; allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens; } /** * @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = true; } /** * @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = false; } /** * @dev Enable only ERC-20 payments for minting on this contract */ function enableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = true; } /** * @dev Disable only ERC-20 payments for minting on this contract */ function disableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = false; } /** * @dev Set the payout of the ERC-20 token payout to a specific address * @param _newErc20Payable new payout addresses of ERC-20 tokens */ function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner { require(_newErc20Payable != address(0), "WithdrawableV2: new ERC-20 payout cannot be the zero address"); require(_newErc20Payable != erc20Payable, "WithdrawableV2: new ERC-20 payout is same as current payout"); erc20Payable = _newErc20Payable; } /** * @dev Reset the Rampp surcharge total to zero regardless of value on contract currently. */ function resetRamppSurchargeBalance() public isRampp { ramppSurchargeBalance = 0 ether; } /** * @dev Allows Rampp wallet to update its own reference as well as update * the address for the Rampp-owed payment split. Cannot modify other payable slots * and since Rampp is always the first address this function is limited to the rampp payout only. * @param _newAddress updated Rampp Address */ function setRamppAddress(address _newAddress) public isRampp { require(_newAddress != RAMPPADDRESS, "WithdrawableV2: New Rampp address must be different"); RAMPPADDRESS = _newAddress; payableAddresses[0] = _newAddress; } } // File: EarlyMintIncentive.sol // Allows the contract to have the first x tokens have a discount or // zero fee that can be calculated on the fly. abstract contract EarlyMintIncentive is Teams, ERC721A { uint256 public PRICE = 0.0009 ether; uint256 public EARLY_MINT_PRICE = 0 ether; uint256 public earlyMintTokenIdCap = 2500; bool public usingEarlyMintIncentive = true; function enableEarlyMintIncentive() public onlyTeamOrOwner { usingEarlyMintIncentive = true; } function disableEarlyMintIncentive() public onlyTeamOrOwner { usingEarlyMintIncentive = false; } /** * @dev Set the max token ID in which the cost incentive will be applied. * @param _newTokenIdCap max tokenId in which incentive will be applied */ function setEarlyMintTokenIdCap(uint256 _newTokenIdCap) public onlyTeamOrOwner { require(_newTokenIdCap <= collectionSize, "Cannot set incentive tokenId cap larger than totaly supply."); require(_newTokenIdCap >= 1, "Cannot set tokenId cap to less than the first token"); earlyMintTokenIdCap = _newTokenIdCap; } /** * @dev Set the incentive mint price * @param _feeInWei new price per token when in incentive range */ function setEarlyIncentivePrice(uint256 _feeInWei) public onlyTeamOrOwner { EARLY_MINT_PRICE = _feeInWei; } /** * @dev Set the primary mint price - the base price when not under incentive * @param _feeInWei new price per token */ function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { require(_count > 0, "Must be minting at least 1 token."); // short circuit function if we dont need to even calc incentive pricing // short circuit if the current tokenId is also already over cap if( usingEarlyMintIncentive == false || currentTokenId() > earlyMintTokenIdCap ) { return PRICE * _count; } uint256 endingTokenId = currentTokenId() + _count; // If qty to mint results in a final token ID less than or equal to the cap then // the entire qty is within free mint. if(endingTokenId <= earlyMintTokenIdCap) { return EARLY_MINT_PRICE * _count; } // If the current token id is less than the incentive cap // and the ending token ID is greater than the incentive cap // we will be straddling the cap so there will be some amount // that are incentive and some that are regular fee. uint256 incentiveTokenCount = earlyMintTokenIdCap - currentTokenId(); uint256 outsideIncentiveCount = endingTokenId - earlyMintTokenIdCap; return (EARLY_MINT_PRICE * incentiveTokenCount) + (PRICE * outsideIncentiveCount); } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, WithdrawableV2, ReentrancyGuard , EarlyMintIncentive { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 10, 5555) { } uint8 public CONTRACT_VERSION = 2; string public _baseTokenURI = "ipfs://bafybeidmkwlcaiigthua5xwotvbidptwdqrjn3sutdnb3czeclhyef22im/"; bool public mintingOpen = false; bool public isRevealed = false; uint256 public MAX_WALLET_MINTS = 20; /////////////// Admin Mint Functions /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token * @param _qty amount of tokens to drop the owner */ function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{ require(_qty > 0, "Must mint at least 1 token."); require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 5555"); _safeMint(_to, _qty, true); } /////////////// GENERIC MINT FUNCTIONS /** * @dev Mints a single token to an address. * fee may or may not be required* * @param _to address of the future owner of the token */ function mintTo(address _to) public payable { require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled."); require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 5555"); require(mintingOpen == true, "Minting is not open right now!"); require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints"); require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!"); _safeMint(_to, 1, false); } /** * @dev Mints tokens to an address in batch. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mintToMultiple(address _to, uint256 _amount) public payable { require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled."); require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction"); require(mintingOpen == true, "Minting is not open right now!"); require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints"); require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 5555"); require(msg.value == getPrice(_amount), "Value below required mint fee for amount"); _safeMint(_to, _amount, false); } /** * @dev Mints tokens to an address in batch using an ERC-20 token for payment * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint * @param _erc20TokenContract erc-20 token contract to mint with */ function mintToMultipleERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable { require(_amount >= 1, "Must mint at least 1 token"); require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction"); require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 5555"); require(mintingOpen == true, "Minting is not open right now!"); require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints"); // ERC-20 Specific pre-flight checks require(isApprovedForERC20Payments(_erc20TokenContract), "ERC-20 Token is not approved for minting!"); uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount; IERC20 payableToken = IERC20(_erc20TokenContract); require(payableToken.balanceOf(_to) >= tokensQtyToTransfer, "Buyer does not own enough of token to complete purchase"); require(payableToken.allowance(_to, address(this)) >= tokensQtyToTransfer, "Buyer did not approve enough of ERC-20 token to complete purchase"); require(hasSurcharge(), "Fee for ERC-20 payment not provided!"); bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer); require(transferComplete, "ERC-20 token was unable to be transferred"); _safeMint(_to, _amount, false); addSurcharge(); } function openMinting() public onlyTeamOrOwner { mintingOpen = true; } function stopMinting() public onlyTeamOrOwner { mintingOpen = false; } /** * @dev Check if wallet over MAX_WALLET_MINTS * @param _address address in question to check if minted count exceeds max */ function canMintAmount(address _address, uint256 _amount) public view returns(bool) { require(_amount >= 1, "Amount must be greater than or equal to 1"); return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS; } /** * @dev Update the maximum amount of tokens that can be minted by a unique wallet * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1 */ function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner { require(_newWalletMax >= 1, "Max mints per wallet must be at least 1"); MAX_WALLET_MINTS = _newWalletMax; } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner { require(_newMaxMint >= 1, "Max mint must be at least 1"); maxBatchSize = _newMaxMint; } function unveil(string memory _updatedTokenURI) public onlyTeamOrOwner { require(isRevealed == false, "Tokens are already unveiled"); _baseTokenURI = _updatedTokenURI; isRevealed = true; } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } function baseTokenURI() public view returns(string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyTeamOrOwner { _baseTokenURI = baseURI; } function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) { return ownershipOf(tokenId); } } // File: contracts/PixilbearsContract.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract PixilbearsContract is RamppERC721A { constructor() RamppERC721A("pixil bears", "plb"){} } //*********************************************************************// //*********************************************************************// // Mintplex v2.1.0 // // This smart contract was generated by mintplex.xyz. // Mintplex allows creators like you to launch // large scale NFT communities without code! // // Mintplex is not responsible for the content of this contract and // hopes it is being used in a responsible and kind way. // Mintplex is not associated or affiliated with this project. // Twitter: @MintplexNFT ---- mintplex.xyz //*********************************************************************// //*********************************************************************//
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcAvailableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEarlyMintIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyMintTokenIdCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEarlyMintIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyERC20MintingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ramppSurchargeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ramppSurchargeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetRamppSurchargeBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isRestricted","type":"bool"}],"name":"setApprovalRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setEarlyIncentivePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenIdCap","type":"uint256"}],"name":"setEarlyMintTokenIdCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSurcharge","type":"uint256"}],"name":"setRamppSurcharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","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":"surchargePayableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usingEarlyMintIncentive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRamppSurcharges","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600280546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e19081179091556000600c5561010060405260a0908152735cca867939aa9cbbd8757339659bfdbf3948091b60c0527392bda736ad0c8be95e0a0930d840e8da198be04160e0526200007890600e9060036200037d565b5060408051602081019091526002546001600160a01b03168152620000a290600f9060016200037d565b50601080546001600160a01b0319167392bda736ad0c8be95e0a0930d840e8da198be041179055604080516060810182526001815260046020820152605f91810191909152620000f7906011906003620003e7565b5060408051602081019091526064815262000117906012906001620003e7565b50600360135560016014556000601581905566038d7ea4c680006016556017805460ff191690556603328b944c4000601955601a556109c4601b55601c805461ffff19166102011790556040805160808101909152604380825262005057602083013980516200019091601d916020909101906200042a565b50601e805461ffff191690556014601f55348015620001ae57600080fd5b506040518060400160405280600b81526020016a706978696c20626561727360a81b8152506040518060400160405280600381526020016238363160e91b8152508181600a6115b3620002106200020a6200032960201b60201c565b6200032d565b600081116200027d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002df5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000274565b8351620002f49060059060208701906200042a565b5082516200030a9060069060208601906200042a565b5060049190915560805250506001600381905560185550620004fb9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620003d5579160200282015b82811115620003d557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200039e565b50620003e3929150620004a7565b5090565b828054828255906000526020600020908101928215620003d5579160200282015b82811115620003d5578251829060ff1690559160200191906001019062000408565b8280546200043890620004be565b90600052602060002090601f0160209004810192826200045c5760008555620003d5565b82601f106200047757805160ff1916838001178555620003d5565b82800160010185558215620003d5579182015b82811115620003d55782518255916020019190600101906200048a565b5b80821115620003e35760008155600101620004a8565b600181811c90821680620004d357607f821691505b60208210811415620004f557634e487b7160e01b600052602260045260246000fd5b50919050565b608051614b1d6200053a6000396000818161079b015281816110290152818161172701528181611ae8015281816120c101526129fd0152614b1d6000f3fe60806040526004361061049d5760003560e01c8063853828b611610260578063c5815c4111610144578063dcd4aa8b116100c1578063f05045c811610085578063f05045c814610deb578063f2fde38b14610e0b578063f4637a1514610e2b578063f70be5e214610e45578063fd19eaf014610e5a578063fe154b2d14610e7a57600080fd5b8063dcd4aa8b14610d37578063dfdedf6914610d4c578063e0eddd9114610d6c578063e757223014610d82578063e985e9c514610da257600080fd5b8063cff4492311610108578063cff4492314610cac578063d266f3a914610ccc578063d547cfb714610cec578063d7224ba014610d01578063d83ae33214610d1757600080fd5b8063c5815c4114610c22578063c87b56dd14610c42578063caa0f92a14610c62578063cacf084214610c77578063cfc86f7b14610c9757600080fd5b8063a1af10ca116101dd578063b4835e07116101a1578063b4835e0714610b78578063b88d4fde14610b98578063b94b237614610bb8578063bbd8556b14610bcd578063c3fb11c914610bed578063c54826ab14610c0d57600080fd5b8063a1af10ca14610ad8578063a1db978214610af8578063a22cb46514610b18578063a91bd1a914610b38578063ab523c6814610b5857600080fd5b80638f4bb497116102245780638f4bb49714610a1b5780638ff4013f14610a3557806391b7f5ed14610a555780639231ab2a14610a7557806395d89b4114610ac357600080fd5b8063853828b61461099d578063891bbe73146109b257806389f26d58146109d25780638d859f3e146109e75780638da5cb5b146109fd57600080fd5b806343696f181161038757806360986a711161030457806370a08231116102c857806370a0823114610900578063715018a614610920578063755edd17146109355780637fb8c6d314610948578063817c0d9c1461096857806383c81c411461097d57600080fd5b806360986a711461088c5780636352211e1461089f57806367dec678146108bf5780636ba9fd38146108d55780636eaf8344146108ea57600080fd5b80634ab8b5dd1161034b5780634ab8b5dd146107f75780634f6ccce71461080d57806354214f691461082d578063547520fe1461084c57806355f804b31461086c57600080fd5b806343696f1814610754578063447abc7a1461077457806345c0f53314610789578063464c3428146107bd57806346f41ed5146107dd57600080fd5b8063286c81371161042057806338b90333116103e457806338b903331461067a5780633d3f9c57146106ab5780633e07311c146106e95780633e3e0b12146106ff57806340ccc0821461071457806342842e0e1461073457600080fd5b8063286c8137146105f95780632913daa0146106195780632a000d4e1461062f5780632b5269b4146106455780632f745c591461065a57600080fd5b806306fdde031161046757806306fdde0314610577578063081812fc14610599578063095ea7b3146105b957806318160ddd146104df57806323b872dd146105d957600080fd5b8062641e48146104a25780629a9b7b146104df57806301ffc9a714610502578063043a2a40146105325780630644cefa14610562575b600080fd5b3480156104ae57600080fd5b506104c26104bd36600461425b565b610e90565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104eb57600080fd5b506104f4610eba565b6040519081526020016104d6565b34801561050e57600080fd5b5061052261051d36600461428a565b610ece565b60405190151581526020016104d6565b34801561053e57600080fd5b5061052261054d3660046142c3565b600b6020526000908152604090205460ff1681565b6105756105703660046142de565b610f3b565b005b34801561058357600080fd5b5061058c6110f1565b6040516104d69190614360565b3480156105a557600080fd5b506104c26105b436600461425b565b611183565b3480156105c557600080fd5b506105756105d43660046142de565b61120c565b3480156105e557600080fd5b506105756105f4366004614373565b6113ff565b34801561060557600080fd5b506104f461061436600461425b565b61140a565b34801561062557600080fd5b506104f460045481565b34801561063b57600080fd5b506104f460155481565b34801561065157600080fd5b5061057561142b565b34801561066657600080fd5b506104f46106753660046142de565b6114c9565b34801561068657600080fd5b50601c5461069990610100900460ff1681565b60405160ff90911681526020016104d6565b3480156106b757600080fd5b506105226106c63660046142c3565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b3480156106f557600080fd5b506104f460135481565b34801561070b57600080fd5b50610575611641565b34801561072057600080fd5b5061057561072f3660046142de565b611692565b34801561074057600080fd5b5061057561074f366004614373565b611789565b34801561076057600080fd5b5061057561076f3660046142c3565b6117a4565b34801561078057600080fd5b506104f46118a1565b34801561079557600080fd5b506104f47f000000000000000000000000000000000000000000000000000000000000000081565b3480156107c957600080fd5b506105756107d83660046142c3565b6118b1565b3480156107e957600080fd5b506017546105229060ff1681565b34801561080357600080fd5b506104f4601f5481565b34801561081957600080fd5b506104f461082836600461425b565b61191a565b34801561083957600080fd5b50601e5461052290610100900460ff1681565b34801561085857600080fd5b5061057561086736600461425b565b611982565b34801561087857600080fd5b506105756108873660046143af565b611a1d565b61057561089a366004614421565b611a73565b3480156108ab57600080fd5b506104c26108ba36600461425b565b611f71565b3480156108cb57600080fd5b506104f4601a5481565b3480156108e157600080fd5b50610575611f83565b3480156108f657600080fd5b506104f460165481565b34801561090c57600080fd5b506104f461091b3660046142c3565b611fd7565b34801561092c57600080fd5b50610575612068565b6105756109433660046142c3565b61209c565b34801561095457600080fd5b506010546104c2906001600160a01b031681565b34801561097457600080fd5b506105756121cc565b34801561098957600080fd5b5061057561099836600461446b565b612220565b3480156109a957600080fd5b50610575612290565b3480156109be57600080fd5b506104c26109cd36600461425b565b6122ef565b3480156109de57600080fd5b506105756122ff565b3480156109f357600080fd5b506104f460195481565b348015610a0957600080fd5b506000546001600160a01b03166104c2565b348015610a2757600080fd5b50601e546105229060ff1681565b348015610a4157600080fd5b50610575610a5036600461425b565b612353565b348015610a6157600080fd5b50610575610a7036600461425b565b6123fe565b348015610a8157600080fd5b50610a95610a9036600461425b565b612448565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016104d6565b348015610acf57600080fd5b5061058c612465565b348015610ae457600080fd5b50610522610af33660046142c3565b612474565b348015610b0457600080fd5b50610575610b133660046142de565b6124f1565b348015610b2457600080fd5b50610575610b3336600461446b565b6126b1565b348015610b4457600080fd5b50610575610b533660046142c3565b612851565b348015610b6457600080fd5b50610575610b7336600461425b565b6129b8565b348015610b8457600080fd5b50610575610b9336600461425b565b612b05565b348015610ba457600080fd5b50610575610bb336600461452e565b612b4f565b348015610bc457600080fd5b50610575612b82565b348015610bd957600080fd5b50610575610be83660046142c3565b612bd3565b348015610bf957600080fd5b50610575610c0836600461425b565b612cd9565b348015610c1957600080fd5b50610575612d08565b348015610c2e57600080fd5b506002546104c2906001600160a01b031681565b348015610c4e57600080fd5b5061058c610c5d36600461425b565b612d59565b348015610c6e57600080fd5b506104f4612db7565b348015610c8357600080fd5b50610575610c923660046142c3565b612dd1565b348015610ca357600080fd5b5061058c612e37565b348015610cb857600080fd5b50610575610cc73660046145aa565b612ec5565b348015610cd857600080fd5b506104f4610ce73660046142c3565b612f88565b348015610cf857600080fd5b5061058c613052565b348015610d0d57600080fd5b506104f4600c5481565b348015610d2357600080fd5b50610575610d323660046145f3565b613061565b348015610d4357600080fd5b506105756130d5565b348015610d5857600080fd5b50610575610d673660046142c3565b61311b565b348015610d7857600080fd5b506104f4601b5481565b348015610d8e57600080fd5b506104f4610d9d36600461425b565b613217565b348015610dae57600080fd5b50610522610dbd366004614632565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610df757600080fd5b506104f4610e0636600461425b565b613327565b348015610e1757600080fd5b50610575610e263660046142c3565b613337565b348015610e3757600080fd5b50601c546105229060ff1681565b348015610e5157600080fd5b506105756133cf565b348015610e6657600080fd5b50610522610e753660046142de565b613400565b348015610e8657600080fd5b506104f460145481565b600f8181548110610ea057600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610ec96003546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610eff57506001600160e01b03198216635b5e139f60e01b145b80610f1a57506001600160e01b0319821663780e9d6360e01b145b80610f3557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff1615610f675760405162461bcd60e51b8152600401610f5e90614665565b60405180910390fd5b6001811015610fb85760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610f5e565b600454811115610fda5760405162461bcd60e51b8152600401610f5e906146b0565b601e5460ff1615156001146110015760405162461bcd60e51b8152600401610f5e906146fe565b61100b8282613400565b6110275760405162461bcd60e51b8152600401610f5e90614735565b7f000000000000000000000000000000000000000000000000000000000000000081611051610eba565b61105b919061479b565b11156110795760405162461bcd60e51b8152600401610f5e906147b3565b61108281613217565b34146110e15760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610f5e565b6110ed82826000613485565b5050565b606060058054611100906147f6565b80601f016020809104026020016040519081016040528092919081815260200182805461112c906147f6565b80156111795780601f1061114e57610100808354040283529160200191611179565b820191906000526020600020905b81548152906001019060200180831161115c57829003601f168201915b5050505050905090565b600061118e826134a0565b6111f05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f5e565b506000908152600960205260409020546001600160a01b031690565b600061121782611f71565b9050806001600160a01b0316836001600160a01b031614156112865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610f5e565b6001600160a01b0383166000908152600b602052604090205460ff16156113615760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c401610f5e565b336001600160a01b038216148061137d575061137d8133610dbd565b6113ef5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610f5e565b6113fa8383836134b6565b505050565b6113fa838383613512565b6011818154811061141a57600080fd5b600091825260209091200154905081565b6002546001600160a01b031633146114555760405162461bcd60e51b8152600401610f5e90614831565b6000601554116114bf5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b6064820152608401610f5e565b6114c7613894565b565b60006114d483611fd7565b821061152d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f5e565b6000611537610eba565b905060008060005b838110156115e1576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159257805192505b876001600160a01b0316836001600160a01b031614156115ce57868414156115c057509350610f3592505050565b836115ca81614868565b9450505b50806115d981614868565b91505061153f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610f5e565b600080546001600160a01b031633908114919061165d90612474565b905081806116685750805b6116845760405162461bcd60e51b8152600401610f5e90614883565b5050601e805460ff19169055565b600080546001600160a01b03163390811491906116ae90612474565b905081806116b95750805b6116d55760405162461bcd60e51b8152600401610f5e90614883565b600083116117255760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610f5e565b7f00000000000000000000000000000000000000000000000000000000000000008361174f610eba565b611759919061479b565b11156117775760405162461bcd60e51b8152600401610f5e906147b3565b61178384846001613485565b50505050565b6113fa83838360405180602001604052806000815250612b4f565b6000546001600160a01b031633146117ce5760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b0381166118165760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f5e565b61181f81612474565b1561187a5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610f5e565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600060155447610ec99190614901565b600080546001600160a01b03163390811491906118cd90612474565b905081806118d85750805b6118f45760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6000611924610eba565b821061197e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610f5e565b5090565b600080546001600160a01b031633908114919061199e90612474565b905081806119a95750805b6119c55760405162461bcd60e51b8152600401610f5e90614883565b6001831015611a165760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610f5e565b5050600455565b600080546001600160a01b0316339081149190611a3990612474565b90508180611a445750805b611a605760405162461bcd60e51b8152600401610f5e90614883565b611a6c601d8585614152565b5050505050565b6001821015611ac45760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610f5e565b600454821115611ae65760405162461bcd60e51b8152600401610f5e906146b0565b7f0000000000000000000000000000000000000000000000000000000000000000611b0f612db7565b1115611b2d5760405162461bcd60e51b8152600401610f5e906147b3565b601e5460ff161515600114611b545760405162461bcd60e51b8152600401610f5e906146fe565b611b5f836001613400565b611b7b5760405162461bcd60e51b8152600401610f5e90614735565b611ba2816001600160a01b03166000908152600d602052604090205460ff16151560011490565b611c005760405162461bcd60e51b815260206004820152602960248201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604482015268206d696e74696e672160b81b6064820152608401610f5e565b600082611c0c83612f88565b611c169190614918565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611c5f57600080fd5b505afa158015611c73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c979190614937565b1015611d0b5760405162461bcd60e51b815260206004820152603760248201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60448201527f656e20746f20636f6d706c6574652070757263686173650000000000000000006064820152608401610f5e565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611d5557600080fd5b505afa158015611d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8d9190614937565b1015611e0b5760405162461bcd60e51b815260206004820152604160248201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060448201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736064820152606560f81b608482015260a401610f5e565b6016543414611e685760405162461bcd60e51b8152602060048201526024808201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696044820152636465642160e01b6064820152608401610f5e565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef49190614950565b905080611f555760405162461bcd60e51b815260206004820152602960248201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604482015268185b9cd9995c9c995960ba1b6064820152608401610f5e565b611f6186866000613485565b611f69613935565b505050505050565b6000611f7c82613950565b5192915050565b600080546001600160a01b0316339081149190611f9f90612474565b90508180611faa5750805b611fc65760405162461bcd60e51b8152600401610f5e90614883565b5050601e805460ff19166001179055565b60006001600160a01b0382166120435760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610f5e565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146120925760405162461bcd60e51b8152600401610f5e906148cc565b6114c76000613a80565b60175460ff16156120bf5760405162461bcd60e51b8152600401610f5e90614665565b7f00000000000000000000000000000000000000000000000000000000000000006120e8612db7565b11156121065760405162461bcd60e51b8152600401610f5e906147b3565b601e5460ff16151560011461212d5760405162461bcd60e51b8152600401610f5e906146fe565b612138816001613400565b6121545760405162461bcd60e51b8152600401610f5e90614735565b61215e6001613217565b34146121bc5760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b6064820152608401610f5e565b6121c98160016000613485565b50565b600080546001600160a01b03163390811491906121e890612474565b905081806121f35750805b61220f5760405162461bcd60e51b8152600401610f5e90614883565b5050601c805460ff19166001179055565b600080546001600160a01b031633908114919061223c90612474565b905081806122475750805b6122635760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600080546001600160a01b03163390811491906122ac90612474565b905081806122b75750805b6122d35760405162461bcd60e51b8152600401610f5e90614883565b60006122dd6118a1565b116122e757600080fd5b6110ed613ad0565b600e8181548110610ea057600080fd5b600080546001600160a01b031633908114919061231b90612474565b905081806123265750805b6123425760405162461bcd60e51b8152600401610f5e90614883565b50506017805460ff19166001179055565b600080546001600160a01b031633908114919061236f90612474565b9050818061237a5750805b6123965760405162461bcd60e51b8152600401610f5e90614883565b60018310156123f75760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610f5e565b5050601f55565b600080546001600160a01b031633908114919061241a90612474565b905081806124255750805b6124415760405162461bcd60e51b8152600401610f5e90614883565b5050601955565b6040805180820190915260008082526020820152610f3582613950565b606060068054611100906147f6565b60006001600160a01b0382166124cc5760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610f5e565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b031633908114919061250d90612474565b905081806125185750805b6125345760405162461bcd60e51b8152600401610f5e90614883565b6000831161254157600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b15801561258457600080fd5b505afa158015612598573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bc9190614937565b10156126225760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b6064820152608401610f5e565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b15801561267057600080fd5b505af1158015612684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a89190614950565b50611a6c613894565b6001600160a01b03821633141561270a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610f5e565b6001600160a01b0382166000908152600b602052604090205460ff16156127e55760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c401610f5e565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b031633908114919061286d90612474565b905081806128785750805b6128945760405162461bcd60e51b8152600401610f5e90614883565b6001600160a01b0383166129105760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f2061646472657373000000006064820152608401610f5e565b6010546001600160a01b03848116911614156129945760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f757400000000006064820152608401610f5e565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163390811491906129d490612474565b905081806129df5750805b6129fb5760405162461bcd60e51b8152600401610f5e90614883565b7f0000000000000000000000000000000000000000000000000000000000000000831115612a915760405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420696e63656e7469766520746f6b656e49642063617060448201527f206c6172676572207468616e20746f74616c7920737570706c792e00000000006064820152608401610f5e565b6001831015612afe5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f742073657420746f6b656e49642063617020746f206c65737320746044820152723430b7103a3432903334b939ba103a37b5b2b760691b6064820152608401610f5e565b5050601b55565b600080546001600160a01b0316339081149190612b2190612474565b90508180612b2c5750805b612b485760405162461bcd60e51b8152600401610f5e90614883565b5050601a55565b612b5a848484613512565b612b6684848484613b44565b6117835760405162461bcd60e51b8152600401610f5e9061496d565b600080546001600160a01b0316339081149190612b9e90612474565b90508180612ba95750805b612bc55760405162461bcd60e51b8152600401610f5e90614883565b50506017805460ff19169055565b6002546001600160a01b03163314612bfd5760405162461bcd60e51b8152600401610f5e90614831565b6002546001600160a01b0382811691161415612c775760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b6064820152608401610f5e565b600280546001600160a01b0319166001600160a01b038316179055600e8054829190600090612ca857612ca86149c0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6002546001600160a01b03163314612d035760405162461bcd60e51b8152600401610f5e90614831565b601655565b600080546001600160a01b0316339081149190612d2490612474565b90508180612d2f5750805b612d4b5760405162461bcd60e51b8152600401610f5e90614883565b5050601c805460ff19169055565b60606000612d65613052565b90506000815111612d855760405180602001604052806000815250612db0565b80612d8f84613c52565b604051602001612da09291906149d6565b6040516020818303038152906040525b9392505050565b6000612dc66003546000190190565b610ec990600161479b565b600080546001600160a01b0316339081149190612ded90612474565b90508180612df85750805b612e145760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b601d8054612e44906147f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612e70906147f6565b8015612ebd5780601f10612e9257610100808354040283529160200191612ebd565b820191906000526020600020905b815481529060010190602001808311612ea057829003601f168201915b505050505081565b600080546001600160a01b0316339081149190612ee190612474565b90508180612eec5750805b612f085760405162461bcd60e51b8152600401610f5e90614883565b601e54610100900460ff1615612f605760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610f5e565b8251612f7390601d9060208601906141d2565b5050601e805461ff0019166101001790555050565b6000612fb1826001600160a01b03166000908152600d602052604090205460ff16151560011490565b6130335760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a401610f5e565b506001600160a01b03166000908152600d602052604090206001015490565b6060601d8054611100906147f6565b600080546001600160a01b031633908114919061307d90612474565b905081806130885750805b6130a45760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b6002546001600160a01b031633146130ff5760405162461bcd60e51b8152600401610f5e90614831565b60006131096118a1565b1161311357600080fd5b6114c7613ad0565b6000546001600160a01b031633146131455760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b03811661318d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f5e565b61319681612474565b6131f65760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610f5e565b6001600160a01b03166000908152600160205260409020805460ff19169055565b60008082116132725760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b6064820152608401610f5e565b601c5460ff16158061328c5750601b5461328a610eba565b115b1561329f5781601954610f359190614918565b6000826132aa610eba565b6132b4919061479b565b9050601b5481116132cd5782601a54612db09190614918565b60006132d7610eba565b601b546132e49190614901565b90506000601b54836132f69190614901565b9050806019546133069190614918565b82601a546133149190614918565b61331e919061479b565b95945050505050565b6012818154811061141a57600080fd5b6000546001600160a01b031633146133615760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b0381166133c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f5e565b6121c981613a80565b6002546001600160a01b031633146133f95760405162461bcd60e51b8152600401610f5e90614831565b6000601555565b600060018210156134655760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610f5e565b601f548261347285613d50565b61347c919061479b565b11159392505050565b6113fa83838360405180602001604052806000815250613dee565b600081600111158015610f355750506003541190565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061351d82613950565b80519091506000906001600160a01b0316336001600160a01b0316148061355457503361354984611183565b6001600160a01b0316145b80613566575081516135669033610dbd565b9050806135d05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610f5e565b846001600160a01b031682600001516001600160a01b0316146136445760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610f5e565b6001600160a01b0384166136a85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610f5e565b6136b860008484600001516134b6565b6001600160a01b03851660009081526008602052604081208054600192906136ea9084906001600160801b0316614a05565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600860205260408120805460019450909261373691859116614a2d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556137be84600161479b565b6000818152600760205260409020549091506001600160a01b031661384e576137e6816134a0565b1561384e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f69565b6015548061389f5750565b60005b60145481101561392c5761391a600f82815481106138c2576138c26149c0565b9060005260206000200160009054906101000a90046001600160a01b03166064601284815481106138f5576138f56149c0565b90600052602060002001548561390b9190614918565b6139159190614a65565b6140bc565b8061392481614868565b9150506138a2565b50506000601555565b60165460156000828254613949919061479b565b9091555050565b60408051808201909152600080825260208201528180600111158015613977575060035481105b15613a20576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156139c9579392505050565b50600019016000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215613a1b579392505050565b6139c9565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610f5e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000613ada6118a1565b905060005b6013548110156110ed57613b32600e8281548110613aff57613aff6149c0565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106138f5576138f56149c0565b80613b3c81614868565b915050613adf565b60006001600160a01b0384163b15613c4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613b88903390899088908890600401614a79565b602060405180830381600087803b158015613ba257600080fd5b505af1925050508015613bd2575060408051601f3d908101601f19168201909252613bcf91810190614ab6565b60015b613c2c573d808015613c00576040519150601f19603f3d011682016040523d82523d6000602084013e613c05565b606091505b508051613c245760405162461bcd60e51b8152600401610f5e9061496d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613c4a565b5060015b949350505050565b606081613c765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613ca05780613c8a81614868565b9150613c999050600a83614a65565b9150613c7a565b60008167ffffffffffffffff811115613cbb57613cbb6144a2565b6040519080825280601f01601f191660200182016040528015613ce5576020820181803683370190505b5090505b8415613c4a57613cfa600183614901565b9150613d07600a86614ad3565b613d1290603061479b565b60f81b818381518110613d2757613d276149c0565b60200101906001600160f81b031916908160001a905350613d49600a86614a65565b9450613ce9565b60006001600160a01b038216613dc25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610f5e565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6003546001600160a01b038516613e515760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610f5e565b613e5a816134a0565b15613ea75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610f5e565b82613f0957600454841115613f095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610f5e565b6001600160a01b0385166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613f65908890614a2d565b6001600160801b0316815260200185613f7e5786613f81565b60005b8360200151613f909190614a2d565b6001600160801b039081169091526001600160a01b0380891660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156140b05760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46140746000898488613b44565b6140905760405162461bcd60e51b8152600401610f5e9061496d565b8161409a81614868565b92505080806140a890614868565b915050614027565b50600355505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614109576040519150601f19603f3d011682016040523d82523d6000602084013e61410e565b606091505b50509050806113fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610f5e565b82805461415e906147f6565b90600052602060002090601f01602090048101928261418057600085556141c6565b82601f106141995782800160ff198235161785556141c6565b828001600101855582156141c6579182015b828111156141c65782358255916020019190600101906141ab565b5061197e929150614246565b8280546141de906147f6565b90600052602060002090601f01602090048101928261420057600085556141c6565b82601f1061421957805160ff19168380011785556141c6565b828001600101855582156141c6579182015b828111156141c657825182559160200191906001019061422b565b5b8082111561197e5760008155600101614247565b60006020828403121561426d57600080fd5b5035919050565b6001600160e01b0319811681146121c957600080fd5b60006020828403121561429c57600080fd5b8135612db081614274565b80356001600160a01b03811681146142be57600080fd5b919050565b6000602082840312156142d557600080fd5b612db0826142a7565b600080604083850312156142f157600080fd5b6142fa836142a7565b946020939093013593505050565b60005b8381101561432357818101518382015260200161430b565b838111156117835750506000910152565b6000815180845261434c816020860160208601614308565b601f01601f19169290920160200192915050565b602081526000612db06020830184614334565b60008060006060848603121561438857600080fd5b614391846142a7565b925061439f602085016142a7565b9150604084013590509250925092565b600080602083850312156143c257600080fd5b823567ffffffffffffffff808211156143da57600080fd5b818501915085601f8301126143ee57600080fd5b8135818111156143fd57600080fd5b86602082850101111561440f57600080fd5b60209290920196919550909350505050565b60008060006060848603121561443657600080fd5b61443f846142a7565b925060208401359150614454604085016142a7565b90509250925092565b80151581146121c957600080fd5b6000806040838503121561447e57600080fd5b614487836142a7565b915060208301356144978161445d565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156144d3576144d36144a2565b604051601f8501601f19908116603f011681019082821181831017156144fb576144fb6144a2565b8160405280935085815286868601111561451457600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561454457600080fd5b61454d856142a7565b935061455b602086016142a7565b925060408501359150606085013567ffffffffffffffff81111561457e57600080fd5b8501601f8101871361458f57600080fd5b61459e878235602084016144b8565b91505092959194509250565b6000602082840312156145bc57600080fd5b813567ffffffffffffffff8111156145d357600080fd5b8201601f810184136145e457600080fd5b613c4a848235602084016144b8565b60008060006060848603121561460857600080fd5b614611846142a7565b925060208401356146218161445d565b929592945050506040919091013590565b6000806040838503121561464557600080fd5b61464e836142a7565b915061465c602084016142a7565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b6020808252601e908201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604082015260600190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156147ae576147ae614785565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526235353560e81b606082015260800190565b600181811c9082168061480a57607f821691505b6020821081141561482b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b600060001982141561487c5761487c614785565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008282101561491357614913614785565b500390565b600081600019048311821515161561493257614932614785565b500290565b60006020828403121561494957600080fd5b5051919050565b60006020828403121561496257600080fd5b8151612db08161445d565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600083516149e8818460208801614308565b8351908301906149fc818360208801614308565b01949350505050565b60006001600160801b0383811690831681811015614a2557614a25614785565b039392505050565b60006001600160801b038083168185168083038211156149fc576149fc614785565b634e487b7160e01b600052601260045260246000fd5b600082614a7457614a74614a4f565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aac90830184614334565b9695505050505050565b600060208284031215614ac857600080fd5b8151612db081614274565b600082614ae257614ae2614a4f565b50069056fea26469706673582212207a0177bdd0f8b0b7aed0feead8ca0e8e9f172514eb226a3cc491e70980cadc3864736f6c63430008090033697066733a2f2f62616679626569646d6b776c6361696967746875613578776f74766269647074776471726a6e33737574646e6233637a65636c687965663232696d2f
Deployed Bytecode
0x60806040526004361061049d5760003560e01c8063853828b611610260578063c5815c4111610144578063dcd4aa8b116100c1578063f05045c811610085578063f05045c814610deb578063f2fde38b14610e0b578063f4637a1514610e2b578063f70be5e214610e45578063fd19eaf014610e5a578063fe154b2d14610e7a57600080fd5b8063dcd4aa8b14610d37578063dfdedf6914610d4c578063e0eddd9114610d6c578063e757223014610d82578063e985e9c514610da257600080fd5b8063cff4492311610108578063cff4492314610cac578063d266f3a914610ccc578063d547cfb714610cec578063d7224ba014610d01578063d83ae33214610d1757600080fd5b8063c5815c4114610c22578063c87b56dd14610c42578063caa0f92a14610c62578063cacf084214610c77578063cfc86f7b14610c9757600080fd5b8063a1af10ca116101dd578063b4835e07116101a1578063b4835e0714610b78578063b88d4fde14610b98578063b94b237614610bb8578063bbd8556b14610bcd578063c3fb11c914610bed578063c54826ab14610c0d57600080fd5b8063a1af10ca14610ad8578063a1db978214610af8578063a22cb46514610b18578063a91bd1a914610b38578063ab523c6814610b5857600080fd5b80638f4bb497116102245780638f4bb49714610a1b5780638ff4013f14610a3557806391b7f5ed14610a555780639231ab2a14610a7557806395d89b4114610ac357600080fd5b8063853828b61461099d578063891bbe73146109b257806389f26d58146109d25780638d859f3e146109e75780638da5cb5b146109fd57600080fd5b806343696f181161038757806360986a711161030457806370a08231116102c857806370a0823114610900578063715018a614610920578063755edd17146109355780637fb8c6d314610948578063817c0d9c1461096857806383c81c411461097d57600080fd5b806360986a711461088c5780636352211e1461089f57806367dec678146108bf5780636ba9fd38146108d55780636eaf8344146108ea57600080fd5b80634ab8b5dd1161034b5780634ab8b5dd146107f75780634f6ccce71461080d57806354214f691461082d578063547520fe1461084c57806355f804b31461086c57600080fd5b806343696f1814610754578063447abc7a1461077457806345c0f53314610789578063464c3428146107bd57806346f41ed5146107dd57600080fd5b8063286c81371161042057806338b90333116103e457806338b903331461067a5780633d3f9c57146106ab5780633e07311c146106e95780633e3e0b12146106ff57806340ccc0821461071457806342842e0e1461073457600080fd5b8063286c8137146105f95780632913daa0146106195780632a000d4e1461062f5780632b5269b4146106455780632f745c591461065a57600080fd5b806306fdde031161046757806306fdde0314610577578063081812fc14610599578063095ea7b3146105b957806318160ddd146104df57806323b872dd146105d957600080fd5b8062641e48146104a25780629a9b7b146104df57806301ffc9a714610502578063043a2a40146105325780630644cefa14610562575b600080fd5b3480156104ae57600080fd5b506104c26104bd36600461425b565b610e90565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104eb57600080fd5b506104f4610eba565b6040519081526020016104d6565b34801561050e57600080fd5b5061052261051d36600461428a565b610ece565b60405190151581526020016104d6565b34801561053e57600080fd5b5061052261054d3660046142c3565b600b6020526000908152604090205460ff1681565b6105756105703660046142de565b610f3b565b005b34801561058357600080fd5b5061058c6110f1565b6040516104d69190614360565b3480156105a557600080fd5b506104c26105b436600461425b565b611183565b3480156105c557600080fd5b506105756105d43660046142de565b61120c565b3480156105e557600080fd5b506105756105f4366004614373565b6113ff565b34801561060557600080fd5b506104f461061436600461425b565b61140a565b34801561062557600080fd5b506104f460045481565b34801561063b57600080fd5b506104f460155481565b34801561065157600080fd5b5061057561142b565b34801561066657600080fd5b506104f46106753660046142de565b6114c9565b34801561068657600080fd5b50601c5461069990610100900460ff1681565b60405160ff90911681526020016104d6565b3480156106b757600080fd5b506105226106c63660046142c3565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b3480156106f557600080fd5b506104f460135481565b34801561070b57600080fd5b50610575611641565b34801561072057600080fd5b5061057561072f3660046142de565b611692565b34801561074057600080fd5b5061057561074f366004614373565b611789565b34801561076057600080fd5b5061057561076f3660046142c3565b6117a4565b34801561078057600080fd5b506104f46118a1565b34801561079557600080fd5b506104f47f00000000000000000000000000000000000000000000000000000000000015b381565b3480156107c957600080fd5b506105756107d83660046142c3565b6118b1565b3480156107e957600080fd5b506017546105229060ff1681565b34801561080357600080fd5b506104f4601f5481565b34801561081957600080fd5b506104f461082836600461425b565b61191a565b34801561083957600080fd5b50601e5461052290610100900460ff1681565b34801561085857600080fd5b5061057561086736600461425b565b611982565b34801561087857600080fd5b506105756108873660046143af565b611a1d565b61057561089a366004614421565b611a73565b3480156108ab57600080fd5b506104c26108ba36600461425b565b611f71565b3480156108cb57600080fd5b506104f4601a5481565b3480156108e157600080fd5b50610575611f83565b3480156108f657600080fd5b506104f460165481565b34801561090c57600080fd5b506104f461091b3660046142c3565b611fd7565b34801561092c57600080fd5b50610575612068565b6105756109433660046142c3565b61209c565b34801561095457600080fd5b506010546104c2906001600160a01b031681565b34801561097457600080fd5b506105756121cc565b34801561098957600080fd5b5061057561099836600461446b565b612220565b3480156109a957600080fd5b50610575612290565b3480156109be57600080fd5b506104c26109cd36600461425b565b6122ef565b3480156109de57600080fd5b506105756122ff565b3480156109f357600080fd5b506104f460195481565b348015610a0957600080fd5b506000546001600160a01b03166104c2565b348015610a2757600080fd5b50601e546105229060ff1681565b348015610a4157600080fd5b50610575610a5036600461425b565b612353565b348015610a6157600080fd5b50610575610a7036600461425b565b6123fe565b348015610a8157600080fd5b50610a95610a9036600461425b565b612448565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016104d6565b348015610acf57600080fd5b5061058c612465565b348015610ae457600080fd5b50610522610af33660046142c3565b612474565b348015610b0457600080fd5b50610575610b133660046142de565b6124f1565b348015610b2457600080fd5b50610575610b3336600461446b565b6126b1565b348015610b4457600080fd5b50610575610b533660046142c3565b612851565b348015610b6457600080fd5b50610575610b7336600461425b565b6129b8565b348015610b8457600080fd5b50610575610b9336600461425b565b612b05565b348015610ba457600080fd5b50610575610bb336600461452e565b612b4f565b348015610bc457600080fd5b50610575612b82565b348015610bd957600080fd5b50610575610be83660046142c3565b612bd3565b348015610bf957600080fd5b50610575610c0836600461425b565b612cd9565b348015610c1957600080fd5b50610575612d08565b348015610c2e57600080fd5b506002546104c2906001600160a01b031681565b348015610c4e57600080fd5b5061058c610c5d36600461425b565b612d59565b348015610c6e57600080fd5b506104f4612db7565b348015610c8357600080fd5b50610575610c923660046142c3565b612dd1565b348015610ca357600080fd5b5061058c612e37565b348015610cb857600080fd5b50610575610cc73660046145aa565b612ec5565b348015610cd857600080fd5b506104f4610ce73660046142c3565b612f88565b348015610cf857600080fd5b5061058c613052565b348015610d0d57600080fd5b506104f4600c5481565b348015610d2357600080fd5b50610575610d323660046145f3565b613061565b348015610d4357600080fd5b506105756130d5565b348015610d5857600080fd5b50610575610d673660046142c3565b61311b565b348015610d7857600080fd5b506104f4601b5481565b348015610d8e57600080fd5b506104f4610d9d36600461425b565b613217565b348015610dae57600080fd5b50610522610dbd366004614632565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610df757600080fd5b506104f4610e0636600461425b565b613327565b348015610e1757600080fd5b50610575610e263660046142c3565b613337565b348015610e3757600080fd5b50601c546105229060ff1681565b348015610e5157600080fd5b506105756133cf565b348015610e6657600080fd5b50610522610e753660046142de565b613400565b348015610e8657600080fd5b506104f460145481565b600f8181548110610ea057600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610ec96003546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610eff57506001600160e01b03198216635b5e139f60e01b145b80610f1a57506001600160e01b0319821663780e9d6360e01b145b80610f3557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff1615610f675760405162461bcd60e51b8152600401610f5e90614665565b60405180910390fd5b6001811015610fb85760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610f5e565b600454811115610fda5760405162461bcd60e51b8152600401610f5e906146b0565b601e5460ff1615156001146110015760405162461bcd60e51b8152600401610f5e906146fe565b61100b8282613400565b6110275760405162461bcd60e51b8152600401610f5e90614735565b7f00000000000000000000000000000000000000000000000000000000000015b381611051610eba565b61105b919061479b565b11156110795760405162461bcd60e51b8152600401610f5e906147b3565b61108281613217565b34146110e15760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610f5e565b6110ed82826000613485565b5050565b606060058054611100906147f6565b80601f016020809104026020016040519081016040528092919081815260200182805461112c906147f6565b80156111795780601f1061114e57610100808354040283529160200191611179565b820191906000526020600020905b81548152906001019060200180831161115c57829003601f168201915b5050505050905090565b600061118e826134a0565b6111f05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f5e565b506000908152600960205260409020546001600160a01b031690565b600061121782611f71565b9050806001600160a01b0316836001600160a01b031614156112865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610f5e565b6001600160a01b0383166000908152600b602052604090205460ff16156113615760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c401610f5e565b336001600160a01b038216148061137d575061137d8133610dbd565b6113ef5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610f5e565b6113fa8383836134b6565b505050565b6113fa838383613512565b6011818154811061141a57600080fd5b600091825260209091200154905081565b6002546001600160a01b031633146114555760405162461bcd60e51b8152600401610f5e90614831565b6000601554116114bf5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b6064820152608401610f5e565b6114c7613894565b565b60006114d483611fd7565b821061152d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610f5e565b6000611537610eba565b905060008060005b838110156115e1576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159257805192505b876001600160a01b0316836001600160a01b031614156115ce57868414156115c057509350610f3592505050565b836115ca81614868565b9450505b50806115d981614868565b91505061153f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610f5e565b600080546001600160a01b031633908114919061165d90612474565b905081806116685750805b6116845760405162461bcd60e51b8152600401610f5e90614883565b5050601e805460ff19169055565b600080546001600160a01b03163390811491906116ae90612474565b905081806116b95750805b6116d55760405162461bcd60e51b8152600401610f5e90614883565b600083116117255760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610f5e565b7f00000000000000000000000000000000000000000000000000000000000015b38361174f610eba565b611759919061479b565b11156117775760405162461bcd60e51b8152600401610f5e906147b3565b61178384846001613485565b50505050565b6113fa83838360405180602001604052806000815250612b4f565b6000546001600160a01b031633146117ce5760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b0381166118165760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f5e565b61181f81612474565b1561187a5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610f5e565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600060155447610ec99190614901565b600080546001600160a01b03163390811491906118cd90612474565b905081806118d85750805b6118f45760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6000611924610eba565b821061197e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610f5e565b5090565b600080546001600160a01b031633908114919061199e90612474565b905081806119a95750805b6119c55760405162461bcd60e51b8152600401610f5e90614883565b6001831015611a165760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610f5e565b5050600455565b600080546001600160a01b0316339081149190611a3990612474565b90508180611a445750805b611a605760405162461bcd60e51b8152600401610f5e90614883565b611a6c601d8585614152565b5050505050565b6001821015611ac45760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610f5e565b600454821115611ae65760405162461bcd60e51b8152600401610f5e906146b0565b7f00000000000000000000000000000000000000000000000000000000000015b3611b0f612db7565b1115611b2d5760405162461bcd60e51b8152600401610f5e906147b3565b601e5460ff161515600114611b545760405162461bcd60e51b8152600401610f5e906146fe565b611b5f836001613400565b611b7b5760405162461bcd60e51b8152600401610f5e90614735565b611ba2816001600160a01b03166000908152600d602052604090205460ff16151560011490565b611c005760405162461bcd60e51b815260206004820152602960248201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604482015268206d696e74696e672160b81b6064820152608401610f5e565b600082611c0c83612f88565b611c169190614918565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b158015611c5f57600080fd5b505afa158015611c73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c979190614937565b1015611d0b5760405162461bcd60e51b815260206004820152603760248201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60448201527f656e20746f20636f6d706c6574652070757263686173650000000000000000006064820152608401610f5e565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b158015611d5557600080fd5b505afa158015611d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8d9190614937565b1015611e0b5760405162461bcd60e51b815260206004820152604160248201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060448201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736064820152606560f81b608482015260a401610f5e565b6016543414611e685760405162461bcd60e51b8152602060048201526024808201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696044820152636465642160e01b6064820152608401610f5e565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef49190614950565b905080611f555760405162461bcd60e51b815260206004820152602960248201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604482015268185b9cd9995c9c995960ba1b6064820152608401610f5e565b611f6186866000613485565b611f69613935565b505050505050565b6000611f7c82613950565b5192915050565b600080546001600160a01b0316339081149190611f9f90612474565b90508180611faa5750805b611fc65760405162461bcd60e51b8152600401610f5e90614883565b5050601e805460ff19166001179055565b60006001600160a01b0382166120435760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610f5e565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146120925760405162461bcd60e51b8152600401610f5e906148cc565b6114c76000613a80565b60175460ff16156120bf5760405162461bcd60e51b8152600401610f5e90614665565b7f00000000000000000000000000000000000000000000000000000000000015b36120e8612db7565b11156121065760405162461bcd60e51b8152600401610f5e906147b3565b601e5460ff16151560011461212d5760405162461bcd60e51b8152600401610f5e906146fe565b612138816001613400565b6121545760405162461bcd60e51b8152600401610f5e90614735565b61215e6001613217565b34146121bc5760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b6064820152608401610f5e565b6121c98160016000613485565b50565b600080546001600160a01b03163390811491906121e890612474565b905081806121f35750805b61220f5760405162461bcd60e51b8152600401610f5e90614883565b5050601c805460ff19166001179055565b600080546001600160a01b031633908114919061223c90612474565b905081806122475750805b6122635760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600080546001600160a01b03163390811491906122ac90612474565b905081806122b75750805b6122d35760405162461bcd60e51b8152600401610f5e90614883565b60006122dd6118a1565b116122e757600080fd5b6110ed613ad0565b600e8181548110610ea057600080fd5b600080546001600160a01b031633908114919061231b90612474565b905081806123265750805b6123425760405162461bcd60e51b8152600401610f5e90614883565b50506017805460ff19166001179055565b600080546001600160a01b031633908114919061236f90612474565b9050818061237a5750805b6123965760405162461bcd60e51b8152600401610f5e90614883565b60018310156123f75760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610f5e565b5050601f55565b600080546001600160a01b031633908114919061241a90612474565b905081806124255750805b6124415760405162461bcd60e51b8152600401610f5e90614883565b5050601955565b6040805180820190915260008082526020820152610f3582613950565b606060068054611100906147f6565b60006001600160a01b0382166124cc5760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610f5e565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b031633908114919061250d90612474565b905081806125185750805b6125345760405162461bcd60e51b8152600401610f5e90614883565b6000831161254157600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b15801561258457600080fd5b505afa158015612598573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bc9190614937565b10156126225760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b6064820152608401610f5e565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b15801561267057600080fd5b505af1158015612684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a89190614950565b50611a6c613894565b6001600160a01b03821633141561270a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610f5e565b6001600160a01b0382166000908152600b602052604090205460ff16156127e55760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c401610f5e565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b031633908114919061286d90612474565b905081806128785750805b6128945760405162461bcd60e51b8152600401610f5e90614883565b6001600160a01b0383166129105760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f2061646472657373000000006064820152608401610f5e565b6010546001600160a01b03848116911614156129945760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f757400000000006064820152608401610f5e565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163390811491906129d490612474565b905081806129df5750805b6129fb5760405162461bcd60e51b8152600401610f5e90614883565b7f00000000000000000000000000000000000000000000000000000000000015b3831115612a915760405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420696e63656e7469766520746f6b656e49642063617060448201527f206c6172676572207468616e20746f74616c7920737570706c792e00000000006064820152608401610f5e565b6001831015612afe5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f742073657420746f6b656e49642063617020746f206c65737320746044820152723430b7103a3432903334b939ba103a37b5b2b760691b6064820152608401610f5e565b5050601b55565b600080546001600160a01b0316339081149190612b2190612474565b90508180612b2c5750805b612b485760405162461bcd60e51b8152600401610f5e90614883565b5050601a55565b612b5a848484613512565b612b6684848484613b44565b6117835760405162461bcd60e51b8152600401610f5e9061496d565b600080546001600160a01b0316339081149190612b9e90612474565b90508180612ba95750805b612bc55760405162461bcd60e51b8152600401610f5e90614883565b50506017805460ff19169055565b6002546001600160a01b03163314612bfd5760405162461bcd60e51b8152600401610f5e90614831565b6002546001600160a01b0382811691161415612c775760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b6064820152608401610f5e565b600280546001600160a01b0319166001600160a01b038316179055600e8054829190600090612ca857612ca86149c0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6002546001600160a01b03163314612d035760405162461bcd60e51b8152600401610f5e90614831565b601655565b600080546001600160a01b0316339081149190612d2490612474565b90508180612d2f5750805b612d4b5760405162461bcd60e51b8152600401610f5e90614883565b5050601c805460ff19169055565b60606000612d65613052565b90506000815111612d855760405180602001604052806000815250612db0565b80612d8f84613c52565b604051602001612da09291906149d6565b6040516020818303038152906040525b9392505050565b6000612dc66003546000190190565b610ec990600161479b565b600080546001600160a01b0316339081149190612ded90612474565b90508180612df85750805b612e145760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b601d8054612e44906147f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612e70906147f6565b8015612ebd5780601f10612e9257610100808354040283529160200191612ebd565b820191906000526020600020905b815481529060010190602001808311612ea057829003601f168201915b505050505081565b600080546001600160a01b0316339081149190612ee190612474565b90508180612eec5750805b612f085760405162461bcd60e51b8152600401610f5e90614883565b601e54610100900460ff1615612f605760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610f5e565b8251612f7390601d9060208601906141d2565b5050601e805461ff0019166101001790555050565b6000612fb1826001600160a01b03166000908152600d602052604090205460ff16151560011490565b6130335760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a401610f5e565b506001600160a01b03166000908152600d602052604090206001015490565b6060601d8054611100906147f6565b600080546001600160a01b031633908114919061307d90612474565b905081806130885750805b6130a45760405162461bcd60e51b8152600401610f5e90614883565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b6002546001600160a01b031633146130ff5760405162461bcd60e51b8152600401610f5e90614831565b60006131096118a1565b1161311357600080fd5b6114c7613ad0565b6000546001600160a01b031633146131455760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b03811661318d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610f5e565b61319681612474565b6131f65760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610f5e565b6001600160a01b03166000908152600160205260409020805460ff19169055565b60008082116132725760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b6064820152608401610f5e565b601c5460ff16158061328c5750601b5461328a610eba565b115b1561329f5781601954610f359190614918565b6000826132aa610eba565b6132b4919061479b565b9050601b5481116132cd5782601a54612db09190614918565b60006132d7610eba565b601b546132e49190614901565b90506000601b54836132f69190614901565b9050806019546133069190614918565b82601a546133149190614918565b61331e919061479b565b95945050505050565b6012818154811061141a57600080fd5b6000546001600160a01b031633146133615760405162461bcd60e51b8152600401610f5e906148cc565b6001600160a01b0381166133c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f5e565b6121c981613a80565b6002546001600160a01b031633146133f95760405162461bcd60e51b8152600401610f5e90614831565b6000601555565b600060018210156134655760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610f5e565b601f548261347285613d50565b61347c919061479b565b11159392505050565b6113fa83838360405180602001604052806000815250613dee565b600081600111158015610f355750506003541190565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061351d82613950565b80519091506000906001600160a01b0316336001600160a01b0316148061355457503361354984611183565b6001600160a01b0316145b80613566575081516135669033610dbd565b9050806135d05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610f5e565b846001600160a01b031682600001516001600160a01b0316146136445760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610f5e565b6001600160a01b0384166136a85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610f5e565b6136b860008484600001516134b6565b6001600160a01b03851660009081526008602052604081208054600192906136ea9084906001600160801b0316614a05565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600860205260408120805460019450909261373691859116614a2d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556137be84600161479b565b6000818152600760205260409020549091506001600160a01b031661384e576137e6816134a0565b1561384e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f69565b6015548061389f5750565b60005b60145481101561392c5761391a600f82815481106138c2576138c26149c0565b9060005260206000200160009054906101000a90046001600160a01b03166064601284815481106138f5576138f56149c0565b90600052602060002001548561390b9190614918565b6139159190614a65565b6140bc565b8061392481614868565b9150506138a2565b50506000601555565b60165460156000828254613949919061479b565b9091555050565b60408051808201909152600080825260208201528180600111158015613977575060035481105b15613a20576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156139c9579392505050565b50600019016000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215613a1b579392505050565b6139c9565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610f5e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000613ada6118a1565b905060005b6013548110156110ed57613b32600e8281548110613aff57613aff6149c0565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106138f5576138f56149c0565b80613b3c81614868565b915050613adf565b60006001600160a01b0384163b15613c4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613b88903390899088908890600401614a79565b602060405180830381600087803b158015613ba257600080fd5b505af1925050508015613bd2575060408051601f3d908101601f19168201909252613bcf91810190614ab6565b60015b613c2c573d808015613c00576040519150601f19603f3d011682016040523d82523d6000602084013e613c05565b606091505b508051613c245760405162461bcd60e51b8152600401610f5e9061496d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613c4a565b5060015b949350505050565b606081613c765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613ca05780613c8a81614868565b9150613c999050600a83614a65565b9150613c7a565b60008167ffffffffffffffff811115613cbb57613cbb6144a2565b6040519080825280601f01601f191660200182016040528015613ce5576020820181803683370190505b5090505b8415613c4a57613cfa600183614901565b9150613d07600a86614ad3565b613d1290603061479b565b60f81b818381518110613d2757613d276149c0565b60200101906001600160f81b031916908160001a905350613d49600a86614a65565b9450613ce9565b60006001600160a01b038216613dc25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610f5e565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6003546001600160a01b038516613e515760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610f5e565b613e5a816134a0565b15613ea75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610f5e565b82613f0957600454841115613f095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610f5e565b6001600160a01b0385166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613f65908890614a2d565b6001600160801b0316815260200185613f7e5786613f81565b60005b8360200151613f909190614a2d565b6001600160801b039081169091526001600160a01b0380891660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156140b05760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46140746000898488613b44565b6140905760405162461bcd60e51b8152600401610f5e9061496d565b8161409a81614868565b92505080806140a890614868565b915050614027565b50600355505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614109576040519150601f19603f3d011682016040523d82523d6000602084013e61410e565b606091505b50509050806113fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610f5e565b82805461415e906147f6565b90600052602060002090601f01602090048101928261418057600085556141c6565b82601f106141995782800160ff198235161785556141c6565b828001600101855582156141c6579182015b828111156141c65782358255916020019190600101906141ab565b5061197e929150614246565b8280546141de906147f6565b90600052602060002090601f01602090048101928261420057600085556141c6565b82601f1061421957805160ff19168380011785556141c6565b828001600101855582156141c6579182015b828111156141c657825182559160200191906001019061422b565b5b8082111561197e5760008155600101614247565b60006020828403121561426d57600080fd5b5035919050565b6001600160e01b0319811681146121c957600080fd5b60006020828403121561429c57600080fd5b8135612db081614274565b80356001600160a01b03811681146142be57600080fd5b919050565b6000602082840312156142d557600080fd5b612db0826142a7565b600080604083850312156142f157600080fd5b6142fa836142a7565b946020939093013593505050565b60005b8381101561432357818101518382015260200161430b565b838111156117835750506000910152565b6000815180845261434c816020860160208601614308565b601f01601f19169290920160200192915050565b602081526000612db06020830184614334565b60008060006060848603121561438857600080fd5b614391846142a7565b925061439f602085016142a7565b9150604084013590509250925092565b600080602083850312156143c257600080fd5b823567ffffffffffffffff808211156143da57600080fd5b818501915085601f8301126143ee57600080fd5b8135818111156143fd57600080fd5b86602082850101111561440f57600080fd5b60209290920196919550909350505050565b60008060006060848603121561443657600080fd5b61443f846142a7565b925060208401359150614454604085016142a7565b90509250925092565b80151581146121c957600080fd5b6000806040838503121561447e57600080fd5b614487836142a7565b915060208301356144978161445d565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156144d3576144d36144a2565b604051601f8501601f19908116603f011681019082821181831017156144fb576144fb6144a2565b8160405280935085815286868601111561451457600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561454457600080fd5b61454d856142a7565b935061455b602086016142a7565b925060408501359150606085013567ffffffffffffffff81111561457e57600080fd5b8501601f8101871361458f57600080fd5b61459e878235602084016144b8565b91505092959194509250565b6000602082840312156145bc57600080fd5b813567ffffffffffffffff8111156145d357600080fd5b8201601f810184136145e457600080fd5b613c4a848235602084016144b8565b60008060006060848603121561460857600080fd5b614611846142a7565b925060208401356146218161445d565b929592945050506040919091013590565b6000806040838503121561464557600080fd5b61464e836142a7565b915061465c602084016142a7565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b6020808252601e908201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f77210000604082015260600190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156147ae576147ae614785565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526235353560e81b606082015260800190565b600181811c9082168061480a57607f821691505b6020821081141561482b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b600060001982141561487c5761487c614785565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008282101561491357614913614785565b500390565b600081600019048311821515161561493257614932614785565b500290565b60006020828403121561494957600080fd5b5051919050565b60006020828403121561496257600080fd5b8151612db08161445d565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600083516149e8818460208801614308565b8351908301906149fc818360208801614308565b01949350505050565b60006001600160801b0383811690831681811015614a2557614a25614785565b039392505050565b60006001600160801b038083168185168083038211156149fc576149fc614785565b634e487b7160e01b600052601260045260246000fd5b600082614a7457614a74614a4f565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aac90830184614334565b9695505050505050565b600060208284031215614ac857600080fd5b8151612db081614274565b600082614ae257614ae2614a4f565b50069056fea26469706673582212207a0177bdd0f8b0b7aed0feead8ca0e8e9f172514eb226a3cc491e70980cadc3864736f6c63430008090033
Deployed Bytecode Sourcemap
66766:104:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49110:59;;;;;;;;;;-1:-1:-1;49110:59:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;363:32:1;;;345:51;;333:2;318:18;49110:59:0;;;;;;;;32136:90;;;;;;;;;;;;;:::i;:::-;;;553:25:1;;;541:2;526:18;32136:90:0;407:177:1;33888:370:0;;;;;;;;;;-1:-1:-1;33888:370:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;33888:370:0;975:187:1;31092:59:0;;;;;;;;;;-1:-1:-1;31092:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;62097:750;;;;;;:::i;:::-;;:::i;:::-;;35953:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38284:204::-;;;;;;;;;;-1:-1:-1;38284:204:0;;;;;:::i;:::-;;:::i;37660:566::-;;;;;;;;;;-1:-1:-1;37660:566:0;;;;;:::i;:::-;;:::i;39325:142::-;;;;;;;;;;-1:-1:-1;39325:142:0;;;;;:::i;:::-;;:::i;49251:39::-;;;;;;;;;;-1:-1:-1;49251:39:0;;;;;:::i;:::-;;:::i;29821:27::-;;;;;;;;;;;;;;;;49440:46;;;;;;;;;;;;;;;;52210:179;;;;;;;;;;;;;:::i;33080:744::-;;;;;;;;;;-1:-1:-1;33080:744:0;;;;;:::i;:::-;;:::i;60264:33::-;;;;;;;;;;-1:-1:-1;60264:33:0;;;;;;;;;;;;;;3051:4:1;3039:17;;;3021:36;;3009:2;2994:18;60264:33:0;2879:184:1;53273:170:0;;;;;;;;;;-1:-1:-1;53273:170:0;;;;;:::i;:::-;-1:-1:-1;;;;;53378:42:0;53358:4;53378:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;53273:170;49345:38;;;;;;;;;;;;;;;;64709:84;;;;;;;;;;;;;:::i;60830:280::-;;;;;;;;;;-1:-1:-1;60830:280:0;;;;;:::i;:::-;;:::i;39530:157::-;;;;;;;;;;-1:-1:-1;39530:157:0;;;;;:::i;:::-;;:::i;27673:223::-;;;;;;;;;;-1:-1:-1;27673:223:0;;;;;:::i;:::-;;:::i;49823:126::-;;;;;;;;;;;;;:::i;29777:39::-;;;;;;;;;;;;;;;54875:161;;;;;;;;;;-1:-1:-1;54875:161:0;;;;;:::i;:::-;;:::i;49542:40::-;;;;;;;;;;-1:-1:-1;49542:40:0;;;;;;;;60493:36;;;;;;;;;;;;;;;;32612:177;;;;;;;;;;-1:-1:-1;32612:177:0;;;;;:::i;:::-;;:::i;60450:30::-;;;;;;;;;;-1:-1:-1;60450:30:0;;;;;;;;;;;65769:179;;;;;;;;;;-1:-1:-1;65769:179:0;;;;;:::i;:::-;;:::i;66409:106::-;;;;;;;;;;-1:-1:-1;66409:106:0;;;;;:::i;:::-;;:::i;63174:1436::-;;;;;;:::i;:::-;;:::i;35776:118::-;;;;;;;;;;-1:-1:-1;35776:118:0;;;;;:::i;:::-;;:::i;57422:41::-;;;;;;;;;;;;;;;;64618:83;;;;;;;;;;;;;:::i;49491:46::-;;;;;;;;;;;;;;;;34314:211;;;;;;;;;;-1:-1:-1;34314:211:0;;;;;:::i;:::-;;:::i;26187:103::-;;;;;;;;;;;;;:::i;61329:549::-;;;;;;:::i;:::-;;:::i;49174:72::-;;;;;;;;;;-1:-1:-1;49174:72:0;;;;-1:-1:-1;;;;;49174:72:0;;;57563:102;;;;;;;;;;;;;:::i;37447:159::-;;;;;;;;;;-1:-1:-1;37447:159:0;;;;;:::i;:::-;;:::i;49955:119::-;;;;;;;;;;;;;:::i;48969:136::-;;;;;;;;;;-1:-1:-1;48969:136:0;;;;;:::i;:::-;;:::i;55592:97::-;;;;;;;;;;;;;:::i;57382:35::-;;;;;;;;;;;;;;;;25538:87;;;;;;;;;;-1:-1:-1;25584:7:0;25611:6;-1:-1:-1;;;;;25611:6:0;25538:87;;60412:31;;;;;;;;;;-1:-1:-1;60412:31:0;;;;;;;;65393:200;;;;;;;;;;-1:-1:-1;65393:200:0;;;;;:::i;:::-;;:::i;58652:90::-;;;;;;;;;;-1:-1:-1;58652:90:0;;;;;:::i;:::-;;:::i;66521:128::-;;;;;;;;;;-1:-1:-1;66521:128:0;;;;;:::i;:::-;;:::i;:::-;;;;4673:13:1;;-1:-1:-1;;;;;4669:39:1;4651:58;;4769:4;4757:17;;;4751:24;4777:18;4747:49;4725:20;;;4718:79;;;;4624:18;66521:128:0;4441:362:1;36108:98:0;;;;;;;;;;;;;:::i;28412:188::-;;;;;;;;;;-1:-1:-1;28412:188:0;;;;;:::i;:::-;;:::i;51644:448::-;;;;;;;;;;-1:-1:-1;51644:448:0;;;;;:::i;:::-;;:::i;38552:465::-;;;;;;;;;;-1:-1:-1;38552:465:0;;;;;:::i;:::-;;:::i;56035:346::-;;;;;;;;;;-1:-1:-1;56035:346:0;;;;;:::i;:::-;;:::i;57944:329::-;;;;;;;;;;-1:-1:-1;57944:329:0;;;;;:::i;:::-;;:::i;58397:115::-;;;;;;;;;;-1:-1:-1;58397:115:0;;;;;:::i;:::-;;:::i;39750:311::-;;;;;;;;;;-1:-1:-1;39750:311:0;;;;;:::i;:::-;;:::i;55776:99::-;;;;;;;;;;;;;:::i;56916:238::-;;;;;;;;;;-1:-1:-1;56916:238:0;;;;;:::i;:::-;;:::i;52984:111::-;;;;;;;;;;-1:-1:-1;52984:111:0;;;;;:::i;:::-;;:::i;57671:104::-;;;;;;;;;;;;;:::i;47810:72::-;;;;;;;;;;-1:-1:-1;47810:72:0;;;;-1:-1:-1;;;;;47810:72:0;;;36269:288;;;;;;;;;;-1:-1:-1;36269:288:0;;;;;:::i;:::-;;:::i;32232:96::-;;;;;;;;;;;;;:::i;55343:163::-;;;;;;;;;;-1:-1:-1;55343:163:0;;;;;:::i;:::-;;:::i;60304:99::-;;;;;;;;;;;;;:::i;65966:220::-;;;;;;;;;;-1:-1:-1;65966:220:0;;;;;:::i;:::-;;:::i;53601:301::-;;;;;;;;;;-1:-1:-1;53601:301:0;;;;;:::i;:::-;;:::i;66311:92::-;;;;;;;;;;;;;:::i;44358:43::-;;;;;;;;;;;;;;;;54268:304;;;;;;;;;;-1:-1:-1;54268:304:0;;;;;:::i;:::-;;:::i;50082:116::-;;;;;;;;;;;;;:::i;28039:234::-;;;;;;;;;;-1:-1:-1;28039:234:0;;;;;:::i;:::-;;:::i;57468:41::-;;;;;;;;;;;;;;;;58748:1207;;;;;;;;;;-1:-1:-1;58748:1207:0;;;;;:::i;:::-;;:::i;39080:186::-;;;;;;;;;;-1:-1:-1;39080:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;39225:25:0;;;39202:4;39225:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39080:186;49295:45;;;;;;;;;;-1:-1:-1;49295:45:0;;;;;:::i;:::-;;:::i;26443:201::-;;;;;;;;;;-1:-1:-1;26443:201:0;;;;;:::i;:::-;;:::i;57514:42::-;;;;;;;;;;-1:-1:-1;57514:42:0;;;;;;;;56493:97;;;;;;;;;;;;;:::i;64958:242::-;;;;;;;;;;-1:-1:-1;64958:242:0;;;;;:::i;:::-;;:::i;49388:47::-;;;;;;;;;;;;;;;;49110:59;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49110:59:0;;-1:-1:-1;49110:59:0;:::o;32136:90::-;32183:7;32206:14;32500:12;;-1:-1:-1;;32500:30:0;;32411:132;32206:14;32199:21;;32136:90;:::o;33888:370::-;34015:4;-1:-1:-1;;;;;;34045:40:0;;-1:-1:-1;;;34045:40:0;;:99;;-1:-1:-1;;;;;;;34096:48:0;;-1:-1:-1;;;34096:48:0;34045:99;:160;;;-1:-1:-1;;;;;;;34155:50:0;;-1:-1:-1;;;34155:50:0;34045:160;:207;;;-1:-1:-1;;;;;;;;;;12032:40:0;;;34216:36;34031:221;33888:370;-1:-1:-1;;33888:370:0:o;62097:750::-;62185:20;;;;:29;62177:85;;;;-1:-1:-1;;;62177:85:0;;;;;;;:::i;:::-;;;;;;;;;62292:1;62281:7;:12;;62273:51;;;;-1:-1:-1;;;62273:51:0;;7969:2:1;62273:51:0;;;7951:21:1;8008:2;7988:18;;;7981:30;8047:28;8027:18;;;8020:56;8093:18;;62273:51:0;7767:350:1;62273:51:0;62354:12;;62343:7;:23;;62335:82;;;;-1:-1:-1;;;62335:82:0;;;;;;;:::i;:::-;62436:11;;;;:19;;:11;:19;62428:62;;;;-1:-1:-1;;;62428:62:0;;;;;;;:::i;:::-;62519:27;62533:3;62538:7;62519:13;:27::i;:::-;62511:88;;;;-1:-1:-1;;;62511:88:0;;;;;;;:::i;:::-;62648:14;62637:7;62618:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;62610:92;;;;-1:-1:-1;;;62610:92:0;;;;;;;:::i;:::-;62734:17;62743:7;62734:8;:17::i;:::-;62721:9;:30;62713:83;;;;-1:-1:-1;;;62713:83:0;;10184:2:1;62713:83:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:38;10361:19;;62713:83:0;9982:404:1;62713:83:0;62809:30;62819:3;62824:7;62833:5;62809:9;:30::i;:::-;62097:750;;:::o;35953:94::-;36007:13;36036:5;36029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35953:94;:::o;38284:204::-;38352:7;38376:16;38384:7;38376;:16::i;:::-;38368:74;;;;-1:-1:-1;;;38368:74:0;;10978:2:1;38368:74:0;;;10960:21:1;11017:2;10997:18;;;10990:30;11056:34;11036:18;;;11029:62;-1:-1:-1;;;11107:18:1;;;11100:43;11160:19;;38368:74:0;10776:409:1;38368:74:0;-1:-1:-1;38458:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38458:24:0;;38284:204::o;37660:566::-;37729:13;37745:24;37761:7;37745:15;:24::i;:::-;37729:40;;37790:5;-1:-1:-1;;;;;37784:11:0;:2;-1:-1:-1;;;;;37784:11:0;;;37776:58;;;;-1:-1:-1;;;37776:58:0;;11392:2:1;37776:58:0;;;11374:21:1;11431:2;11411:18;;;11404:30;11470:34;11450:18;;;11443:62;-1:-1:-1;;;11521:18:1;;;11514:32;11563:19;;37776:58:0;11190:398:1;37776:58:0;-1:-1:-1;;;;;37849:31:0;;;;;;:27;:31;;;;;;;;:40;37841:180;;;;-1:-1:-1;;;37841:180:0;;11795:2:1;37841:180:0;;;11777:21:1;11834:3;11814:18;;;11807:31;11874:34;11854:18;;;11847:62;11945:34;11925:18;;;11918:62;12017:34;11996:19;;;11989:63;12089:33;12068:19;;;12061:62;12140:19;;37841:180:0;11593:572:1;37841:180:0;24344:10;-1:-1:-1;;;;;38046:21:0;;;;:62;;-1:-1:-1;38071:37:0;38088:5;24344:10;39080:186;:::i;38071:37::-;38030:153;;;;-1:-1:-1;;;38030:153:0;;12372:2:1;38030:153:0;;;12354:21:1;12411:2;12391:18;;;12384:30;12450:34;12430:18;;;12423:62;12521:27;12501:18;;;12494:55;12566:19;;38030:153:0;12170:421:1;38030:153:0;38192:28;38201:2;38205:7;38214:5;38192:8;:28::i;:::-;37722:504;37660:566;;:::o;39325:142::-;39433:28;39443:4;39449:2;39453:7;39433:9;:28::i;49251:39::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49251:39:0;:::o;52210:179::-;47939:12;;-1:-1:-1;;;;;47939:12:0;47925:10;:26;47917:67;;;;-1:-1:-1;;;47917:67:0;;;;;;;:::i;:::-;52299:1:::1;52275:21;;:25;52267:85;;;::::0;-1:-1:-1;;;52267:85:0;;13155:2:1;52267:85:0::1;::::0;::::1;13137:21:1::0;13194:2;13174:18;;;13167:30;13233:34;13213:18;;;13206:62;-1:-1:-1;;;13284:18:1;;;13277:45;13339:19;;52267:85:0::1;12953:411:1::0;52267:85:0::1;52359:24;:22;:24::i;:::-;52210:179::o:0;33080:744::-;33189:7;33224:16;33234:5;33224:9;:16::i;:::-;33216:5;:24;33208:71;;;;-1:-1:-1;;;33208:71:0;;13571:2:1;33208:71:0;;;13553:21:1;13610:2;13590:18;;;13583:30;13649:34;13629:18;;;13622:62;-1:-1:-1;;;13700:18:1;;;13693:32;13742:19;;33208:71:0;13369:398:1;33208:71:0;33286:22;33311:13;:11;:13::i;:::-;33286:38;;33331:19;33361:25;33411:9;33406:350;33430:14;33426:1;:18;33406:350;;;33460:31;33494:14;;;:11;:14;;;;;;;;;33460:48;;;;;;;;;-1:-1:-1;;;;;33460:48:0;;;;;-1:-1:-1;;;33460:48:0;;;;;;;;;;;;33521:28;33517:89;;33582:14;;;-1:-1:-1;33517:89:0;33639:5;-1:-1:-1;;;;;33618:26:0;:17;-1:-1:-1;;;;;33618:26:0;;33614:135;;;33676:5;33661:11;:20;33657:59;;;-1:-1:-1;33703:1:0;-1:-1:-1;33696:8:0;;-1:-1:-1;;;33696:8:0;33657:59;33726:13;;;;:::i;:::-;;;;33614:135;-1:-1:-1;33446:3:0;;;;:::i;:::-;;;;33406:350;;;-1:-1:-1;33762:56:0;;-1:-1:-1;;;33762:56:0;;14114:2:1;33762:56:0;;;14096:21:1;14153:2;14133:18;;;14126:30;14192:34;14172:18;;;14165:62;-1:-1:-1;;;14243:18:1;;;14236:44;14297:19;;33762:56:0;13912:410:1;64709:84:0;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;64766:11:0::1;:19:::0;;-1:-1:-1;;64766:19:0::1;::::0;;64709:84::o;60830:280::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;60929:1:::1;60922:4;:8;60914:48;;;::::0;-1:-1:-1;;;60914:48:0;;14939:2:1;60914:48:0::1;::::0;::::1;14921:21:1::0;14978:2;14958:18;;;14951:30;15017:29;14997:18;;;14990:57;15064:18;;60914:48:0::1;14737:351:1::0;60914:48:0::1;61009:14;61001:4;60982:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;60974:89;;;;-1:-1:-1::0;;;60974:89:0::1;;;;;;;:::i;:::-;61075:26;61085:3;61090:4;61096;61075:9;:26::i;:::-;28725:182:::0;;60830:280;;:::o;39530:157::-;39642:39;39659:4;39665:2;39669:7;39642:39;;;;;;;;;;;;:16;:39::i;27673:223::-;25584:7;25611:6;-1:-1:-1;;;;;25611:6:0;24344:10;25758:23;25750:68;;;;-1:-1:-1;;;25750:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27742:22:0;::::1;27734:50;;;::::0;-1:-1:-1;;;27734:50:0;;15656:2:1;27734:50:0::1;::::0;::::1;15638:21:1::0;15695:2;15675:18;;;15668:30;-1:-1:-1;;;15714:18:1;;;15707:45;15769:18;;27734:50:0::1;15454:339:1::0;27734:50:0::1;27800:16;27807:8;27800:6;:16::i;:::-;27799:17;27791:67;;;::::0;-1:-1:-1;;;27791:67:0;;16000:2:1;27791:67:0::1;::::0;::::1;15982:21:1::0;16039:2;16019:18;;;16012:30;16078:34;16058:18;;;16051:62;-1:-1:-1;;;16129:18:1;;;16122:35;16174:19;;27791:67:0::1;15798:401:1::0;27791:67:0::1;-1:-1:-1::0;;;;;27869:14:0::1;;::::0;;;27886:4:::1;27869:14;::::0;;;;;;;:21;;-1:-1:-1;;27869:21:0::1;::::0;;::::1;::::0;;27673:223::o;49823:126::-;49875:7;49922:21;;49898;:45;;;;:::i;54875:161::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;54972:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;54972:58:0::1;55026:4;54972:58;::::0;;54875:161::o;32612:177::-;32679:7;32711:13;:11;:13::i;:::-;32703:5;:21;32695:69;;;;-1:-1:-1;;;32695:69:0;;16536:2:1;32695:69:0;;;16518:21:1;16575:2;16555:18;;;16548:30;16614:34;16594:18;;;16587:62;-1:-1:-1;;;16665:18:1;;;16658:33;16708:19;;32695:69:0;16334:399:1;32695:69:0;-1:-1:-1;32778:5:0;32612:177::o;65769:179::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;65868:1:::1;65853:11;:16;;65845:56;;;::::0;-1:-1:-1;;;65845:56:0;;16940:2:1;65845:56:0::1;::::0;::::1;16922:21:1::0;16979:2;16959:18;;;16952:30;17018:29;16998:18;;;16991:57;17065:18;;65845:56:0::1;16738:351:1::0;65845:56:0::1;-1:-1:-1::0;;65913:12:0::1;:26:::0;65769:179::o;66409:106::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;66486:23:::1;:13;66502:7:::0;;66486:23:::1;:::i;:::-;;28725:182:::0;;66409:106;;:::o;63174:1436::-;63305:1;63294:7;:12;;63286:51;;;;-1:-1:-1;;;63286:51:0;;7969:2:1;63286:51:0;;;7951:21:1;8008:2;7988:18;;;7981:30;8047:28;8027:18;;;8020:56;8093:18;;63286:51:0;7767:350:1;63286:51:0;63365:12;;63354:7;:23;;63346:82;;;;-1:-1:-1;;;63346:82:0;;;;;;;:::i;:::-;63465:14;63445:16;:14;:16::i;:::-;:34;;63437:82;;;;-1:-1:-1;;;63437:82:0;;;;;;;:::i;:::-;63536:11;;;;:19;;:11;:19;63528:62;;;;-1:-1:-1;;;63528:62:0;;;;;;;:::i;:::-;63615:21;63629:3;63634:1;63615:13;:21::i;:::-;63607:82;;;;-1:-1:-1;;;63607:82:0;;;;;;;:::i;:::-;63752:47;63779:19;-1:-1:-1;;;;;53378:42:0;53358:4;53378:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;53273:170;63752:47;63744:101;;;;-1:-1:-1;;;63744:101:0;;17296:2:1;63744:101:0;;;17278:21:1;17335:2;17315:18;;;17308:30;17374:34;17354:18;;;17347:62;-1:-1:-1;;;17425:18:1;;;17418:39;17474:19;;63744:101:0;17094:405:1;63744:101:0;63854:27;63928:7;63884:41;63905:19;63884:20;:41::i;:::-;:51;;;;:::i;:::-;64012:27;;-1:-1:-1;;;64012:27:0;;-1:-1:-1;;;;;363:32:1;;;64012:27:0;;;345:51:1;63854:81:0;;-1:-1:-1;63973:19:0;;63854:81;;64012:22;;;;;;318:18:1;;64012:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;64004:118;;;;-1:-1:-1;;;64004:118:0;;18068:2:1;64004:118:0;;;18050:21:1;18107:2;18087:18;;;18080:30;18146:34;18126:18;;;18119:62;18217:25;18197:18;;;18190:53;18260:19;;64004:118:0;17866:419:1;64004:118:0;64139:42;;-1:-1:-1;;;64139:42:0;;-1:-1:-1;;;;;18520:15:1;;;64139:42:0;;;18502:34:1;64175:4:0;18552:18:1;;;18545:43;64185:19:0;;64139:22;;;;;;18437:18:1;;64139:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;64131:143;;;;-1:-1:-1;;;64131:143:0;;18801:2:1;64131:143:0;;;18783:21:1;18840:2;18820:18;;;18813:30;18879:34;18859:18;;;18852:62;18950:34;18930:18;;;18923:62;-1:-1:-1;;;19001:19:1;;;18994:32;19043:19;;64131:143:0;18599:469:1;64131:143:0;52767:17;;52754:9;:30;64283:63;;;;-1:-1:-1;;;64283:63:0;;19275:2:1;64283:63:0;;;19257:21:1;19314:2;19294:18;;;19287:30;19353:34;19333:18;;;19326:62;-1:-1:-1;;;19404:18:1;;;19397:34;19448:19;;64283:63:0;19073:400:1;64283:63:0;64387:66;;-1:-1:-1;;;64387:66:0;;-1:-1:-1;;;;;19736:15:1;;;64387:66:0;;;19718:34:1;64426:4:0;19768:18:1;;;19761:43;19820:18;;;19813:34;;;64363:21:0;;64387:25;;;;;;19653:18:1;;64387:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64363:90;;64470:16;64462:70;;;;-1:-1:-1;;;64462:70:0;;20310:2:1;64462:70:0;;;20292:21:1;20349:2;20329:18;;;20322:30;20388:34;20368:18;;;20361:62;-1:-1:-1;;;20439:18:1;;;20432:39;20488:19;;64462:70:0;20108:405:1;64462:70:0;64549:30;64559:3;64564:7;64573:5;64549:9;:30::i;:::-;64588:14;:12;:14::i;:::-;63277:1333;;;63174:1436;;;:::o;35776:118::-;35840:7;35863:20;35875:7;35863:11;:20::i;:::-;:25;;35776:118;-1:-1:-1;;35776:118:0:o;64618:83::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;64675:11:0::1;:18:::0;;-1:-1:-1;;64675:18:0::1;64689:4;64675:18;::::0;;64618:83::o;34314:211::-;34378:7;-1:-1:-1;;;;;34402:19:0;;34394:75;;;;-1:-1:-1;;;34394:75:0;;20720:2:1;34394:75:0;;;20702:21:1;20759:2;20739:18;;;20732:30;20798:34;20778:18;;;20771:62;-1:-1:-1;;;20849:18:1;;;20842:41;20900:19;;34394:75:0;20518:407:1;34394:75:0;-1:-1:-1;;;;;;34491:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34491:27:0;;34314:211::o;26187:103::-;25584:7;25611:6;-1:-1:-1;;;;;25611:6:0;24344:10;25758:23;25750:68;;;;-1:-1:-1;;;25750:68:0;;;;;;;:::i;:::-;26252:30:::1;26279:1;26252:18;:30::i;61329:549::-:0;61392:20;;;;:29;61384:85;;;;-1:-1:-1;;;61384:85:0;;;;;;;:::i;:::-;61508:14;61488:16;:14;:16::i;:::-;:34;;61480:82;;;;-1:-1:-1;;;61480:82:0;;;;;;;:::i;:::-;61581:11;;;;:19;;:11;:19;61573:62;;;;-1:-1:-1;;;61573:62:0;;;;;;;:::i;:::-;61664:21;61678:3;61683:1;61664:13;:21::i;:::-;61656:82;;;;-1:-1:-1;;;61656:82:0;;;;;;;:::i;:::-;61770:11;61779:1;61770:8;:11::i;:::-;61757:9;:24;61749:76;;;;-1:-1:-1;;;61749:76:0;;21132:2:1;61749:76:0;;;21114:21:1;21171:2;21151:18;;;21144:30;21210:34;21190:18;;;21183:62;-1:-1:-1;;;21261:18:1;;;21254:37;21308:19;;61749:76:0;20930:403:1;61749:76:0;61846:24;61856:3;61861:1;61864:5;61846:9;:24::i;:::-;61329:549;:::o;57563:102::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;57629:23:0::1;:30:::0;;-1:-1:-1;;57629:30:0::1;57655:4;57629:30;::::0;;57563:102::o;37447:159::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;37547:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;37547:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37447:159::o;49955:119::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;50043:1:::1;50018:22;:20;:22::i;:::-;:26;50010:35;;;::::0;::::1;;50054:14;:12;:14::i;48969:136::-:0;;;;;;;;;;;;55592:97;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55656:20:0::1;:27:::0;;-1:-1:-1;;55656:27:0::1;55679:4;55656:27;::::0;;55592:97::o;65393:200::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;65497:1:::1;65480:13;:18;;65472:70;;;::::0;-1:-1:-1;;;65472:70:0;;21540:2:1;65472:70:0::1;::::0;::::1;21522:21:1::0;21579:2;21559:18;;;21552:30;21618:34;21598:18;;;21591:62;-1:-1:-1;;;21669:18:1;;;21662:37;21716:19;;65472:70:0::1;21338:403:1::0;65472:70:0::1;-1:-1:-1::0;;65553:16:0::1;:32:::0;65393:200::o;58652:90::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;58719:5:0::1;:17:::0;58652:90::o;66521:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;66623:20:0;66635:7;66623:11;:20::i;36108:98::-;36164:13;36193:7;36186:14;;;;;:::i;28412:188::-;28482:4;-1:-1:-1;;;;;28506:22:0;;28498:60;;;;-1:-1:-1;;;28498:60:0;;21948:2:1;28498:60:0;;;21930:21:1;21987:2;21967:18;;;21960:30;22026:27;22006:18;;;21999:55;22071:18;;28498:60:0;21746:349:1;28498:60:0;-1:-1:-1;;;;;;28572:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;28412:188::o;51644:448::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;51776:1:::1;51756:17;:21;51748:30;;;::::0;::::1;;51845:38;::::0;-1:-1:-1;;;51845:38:0;;51877:4:::1;51845:38;::::0;::::1;345:51:1::0;51815:14:0;;51887:17;;-1:-1:-1;;;;;51845:23:0;::::1;::::0;::::1;::::0;318:18:1;;51845:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;51837:119;;;::::0;-1:-1:-1;;;51837:119:0;;22302:2:1;51837:119:0::1;::::0;::::1;22284:21:1::0;22341:2;22321:18;;;22314:30;22380:34;22360:18;;;22353:62;-1:-1:-1;;;22431:18:1;;;22424:45;22486:19;;51837:119:0::1;22100:411:1::0;51837:119:0::1;51986:12;::::0;51963:55:::1;::::0;-1:-1:-1;;;51963:55:0;;-1:-1:-1;;;;;51986:12:0;;::::1;51963:55;::::0;::::1;22690:51:1::0;22757:18;;;22750:34;;;51963:22:0;;::::1;::::0;::::1;::::0;22663:18:1;;51963:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52062:24;:22;:24::i;38552:465::-:0;-1:-1:-1;;;;;38643:24:0;;24344:10;38643:24;;38635:63;;;;-1:-1:-1;;;38635:63:0;;22997:2:1;38635:63:0;;;22979:21:1;23036:2;23016:18;;;23009:30;23075:28;23055:18;;;23048:56;23121:18;;38635:63:0;22795:350:1;38635:63:0;-1:-1:-1;;;;;38713:37:0;;;;;;:27;:37;;;;;;;;:46;38705:184;;;;-1:-1:-1;;;38705:184:0;;23352:2:1;38705:184:0;;;23334:21:1;23391:3;23371:18;;;23364:31;23431:34;23411:18;;;23404:62;23502:34;23482:18;;;23475:62;23574:34;23553:19;;;23546:63;23646:31;23625:19;;;23618:60;23695:19;;38705:184:0;23150:570:1;38705:184:0;24344:10;38898:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38898:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38898:53:0;;;;;;;;;;38963:48;;1115:41:1;;;38898:42:0;;24344:10;38963:48;;1088:18:1;38963:48:0;;;;;;;38552:465;;:::o;56035:346::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56131:30:0;::::1;56123:103;;;::::0;-1:-1:-1;;;56123:103:0;;23927:2:1;56123:103:0::1;::::0;::::1;23909:21:1::0;23966:2;23946:18;;;23939:30;24005:34;23985:18;;;23978:62;24076:30;24056:18;;;24049:58;24124:19;;56123:103:0::1;23725:424:1::0;56123:103:0::1;56261:12;::::0;-1:-1:-1;;;;;56241:32:0;;::::1;56261:12:::0;::::1;56241:32;;56233:104;;;::::0;-1:-1:-1;;;56233:104:0;;24356:2:1;56233:104:0::1;::::0;::::1;24338:21:1::0;24395:2;24375:18;;;24368:30;24434:34;24414:18;;;24407:62;24505:29;24485:18;;;24478:57;24552:19;;56233:104:0::1;24154:423:1::0;56233:104:0::1;-1:-1:-1::0;;56344:12:0::1;:31:::0;;-1:-1:-1;;;;;;56344:31:0::1;-1:-1:-1::0;;;;;56344:31:0;;;::::1;::::0;;;::::1;::::0;;56035:346::o;57944:329::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;58056:14:::1;58038;:32;;58030:104;;;::::0;-1:-1:-1;;;58030:104:0;;24784:2:1;58030:104:0::1;::::0;::::1;24766:21:1::0;24823:2;24803:18;;;24796:30;24862:34;24842:18;;;24835:62;24933:29;24913:18;;;24906:57;24980:19;;58030:104:0::1;24582:423:1::0;58030:104:0::1;58167:1;58149:14;:19;;58141:83;;;::::0;-1:-1:-1;;;58141:83:0;;25212:2:1;58141:83:0::1;::::0;::::1;25194:21:1::0;25251:2;25231:18;;;25224:30;25290:34;25270:18;;;25263:62;-1:-1:-1;;;25341:18:1;;;25334:49;25400:19;;58141:83:0::1;25010:415:1::0;58141:83:0::1;-1:-1:-1::0;;58231:19:0::1;:36:::0;57944:329::o;58397:115::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;58478:16:0::1;:28:::0;58397:115::o;39750:311::-;39887:28;39897:4;39903:2;39907:7;39887:9;:28::i;:::-;39938:48;39961:4;39967:2;39971:7;39980:5;39938:22;:48::i;:::-;39922:133;;;;-1:-1:-1;;;39922:133:0;;;;;;;:::i;55776:99::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55841:20:0::1;:28:::0;;-1:-1:-1;;55841:28:0::1;::::0;;55776:99::o;56916:238::-;47939:12;;-1:-1:-1;;;;;47939:12:0;47925:10;:26;47917:67;;;;-1:-1:-1;;;47917:67:0;;;;;;;:::i;:::-;57007:12:::1;::::0;-1:-1:-1;;;;;56992:27:0;;::::1;57007:12:::0;::::1;56992:27;;56984:91;;;::::0;-1:-1:-1;;;56984:91:0;;26052:2:1;56984:91:0::1;::::0;::::1;26034:21:1::0;26091:2;26071:18;;;26064:30;26130:34;26110:18;;;26103:62;-1:-1:-1;;;26181:18:1;;;26174:49;26240:19;;56984:91:0::1;25850:415:1::0;56984:91:0::1;57082:12;:26:::0;;-1:-1:-1;;;;;;57082:26:0::1;-1:-1:-1::0;;;;;57082:26:0;::::1;;::::0;;57115:16:::1;:19:::0;;57082:26;;57115:16;-1:-1:-1;;57115:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;57115:33:0::1;;;;;-1:-1:-1::0;;;;;57115:33:0::1;;;;;;56916:238:::0;:::o;52984:111::-;47939:12;;-1:-1:-1;;;;;47939:12:0;47925:10;:26;47917:67;;;;-1:-1:-1;;;47917:67:0;;;;;;;:::i;:::-;53056:17:::1;:33:::0;52984:111::o;57671:104::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;57738:23:0::1;:31:::0;;-1:-1:-1;;57738:31:0::1;::::0;;57671:104::o;36269:288::-;36367:13;36392:21;36416:10;:8;:10::i;:::-;36392:34;;36471:1;36453:7;36447:21;:25;:104;;;;;;;;;;;;;;;;;36508:7;36517:18;:7;:16;:18::i;:::-;36491:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36447:104;36433:118;36269:288;-1:-1:-1;;;36269:288:0:o;32232:96::-;32279:7;32304:14;32500:12;;-1:-1:-1;;32500:30:0;;32411:132;32304:14;:18;;32321:1;32304:18;:::i;55343:163::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;55441:42:0::1;55495:5;55441:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;55441:59:0::1;::::0;;55343:163::o;60304:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65966:220::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;66056:10:::1;::::0;::::1;::::0;::::1;;;:19;66048:59;;;::::0;-1:-1:-1;;;66048:59:0;;27079:2:1;66048:59:0::1;::::0;::::1;27061:21:1::0;27118:2;27098:18;;;27091:30;27157:29;27137:18;;;27130:57;27204:18;;66048:59:0::1;26877:351:1::0;66048:59:0::1;66118:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;66161:10:0::1;:17:::0;;-1:-1:-1;;66161:17:0::1;;;::::0;;-1:-1:-1;;65966:220:0:o;53601:301::-;53680:7;53704:47;53731:19;-1:-1:-1;;;;;53378:42:0;53358:4;53378:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;53273:170;53704:47;53696:131;;;;-1:-1:-1;;;53696:131:0;;27435:2:1;53696:131:0;;;27417:21:1;27474:2;27454:18;;;27447:30;27513:34;27493:18;;;27486:62;27584:34;27564:18;;;27557:62;-1:-1:-1;;;27635:19:1;;;27628:38;27683:19;;53696:131:0;27233:475:1;53696:131:0;-1:-1:-1;;;;;;53841:42:0;;;;;:21;:42;;;;;:55;;;;53601:301::o;66311:92::-;66355:13;66384;66377:20;;;;;:::i;54268:304::-;28732:13;25611:6;;-1:-1:-1;;;;;25611:6:0;24344:10;28748:23;;;;28732:13;28793:20;;28412:188;:::i;28793:20::-;28778:35;;28828:8;:19;;;;28840:7;28828:19;28820:73;;;;-1:-1:-1;;;28820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;54417:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;54417:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;54487:55:0::1;:79:::0;54268:304::o;50082:116::-;47939:12;;-1:-1:-1;;;;;47939:12:0;47925:10;:26;47917:67;;;;-1:-1:-1;;;47917:67:0;;;;;;;:::i;:::-;50167:1:::1;50142:22;:20;:22::i;:::-;:26;50134:35;;;::::0;::::1;;50178:14;:12;:14::i;28039:234::-:0;25584:7;25611:6;-1:-1:-1;;;;;25611:6:0;24344:10;25758:23;25750:68;;;;-1:-1:-1;;;25750:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28113:22:0;::::1;28105:50;;;::::0;-1:-1:-1;;;28105:50:0;;15656:2:1;28105:50:0::1;::::0;::::1;15638:21:1::0;15695:2;15675:18;;;15668:30;-1:-1:-1;;;15714:18:1;;;15707:45;15769:18;;28105:50:0::1;15454:339:1::0;28105:50:0::1;28170:16;28177:8;28170:6;:16::i;:::-;28162:72;;;::::0;-1:-1:-1;;;28162:72:0;;27915:2:1;28162:72:0::1;::::0;::::1;27897:21:1::0;27954:2;27934:18;;;27927:30;27993:34;27973:18;;;27966:62;-1:-1:-1;;;28044:18:1;;;28037:41;28095:19;;28162:72:0::1;27713:407:1::0;28162:72:0::1;-1:-1:-1::0;;;;;28245:14:0::1;28262:5;28245:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;28245:22:0::1;::::0;;28039:234::o;58748:1207::-;58803:7;58836:1;58827:6;:10;58819:56;;;;-1:-1:-1;;;58819:56:0;;28327:2:1;58819:56:0;;;28309:21:1;28366:2;28346:18;;;28339:30;28405:34;28385:18;;;28378:62;-1:-1:-1;;;28456:18:1;;;28449:31;28497:19;;58819:56:0;28125:397:1;58819:56:0;59043:23;;;;:32;;:81;;;59105:19;;59086:16;:14;:16::i;:::-;:38;59043:81;59032:138;;;59156:6;59148:5;;:14;;;;:::i;59032:138::-;59178:21;59221:6;59202:16;:14;:16::i;:::-;:25;;;;:::i;:::-;59178:49;;59385:19;;59367:13;:37;59364:91;;59441:6;59422:16;;:25;;;;:::i;59364:91::-;59717:27;59769:16;:14;:16::i;:::-;59747:19;;:38;;;;:::i;:::-;59717:68;;59792:29;59840:19;;59824:13;:35;;;;:::i;:::-;59792:67;;59927:21;59919:5;;:29;;;;:::i;:::-;59895:19;59876:16;;:38;;;;:::i;:::-;59875:74;;;;:::i;:::-;59868:81;58748:1207;-1:-1:-1;;;;;58748:1207:0:o;49295:45::-;;;;;;;;;;;;26443:201;25584:7;25611:6;-1:-1:-1;;;;;25611:6:0;24344:10;25758:23;25750:68;;;;-1:-1:-1;;;25750:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26532:22:0;::::1;26524:73;;;::::0;-1:-1:-1;;;26524:73:0;;28729:2:1;26524:73:0::1;::::0;::::1;28711:21:1::0;28768:2;28748:18;;;28741:30;28807:34;28787:18;;;28780:62;-1:-1:-1;;;28858:18:1;;;28851:36;28904:19;;26524:73:0::1;28527:402:1::0;26524:73:0::1;26608:28;26627:8;26608:18;:28::i;56493:97::-:0;47939:12;;-1:-1:-1;;;;;47939:12:0;47925:10;:26;47917:67;;;;-1:-1:-1;;;47917:67:0;;;;;;;:::i;:::-;56577:7:::1;56553:21;:31:::0;56493:97::o;64958:242::-;65036:4;65072:1;65061:7;:12;;65053:66;;;;-1:-1:-1;;;65053:66:0;;29136:2:1;65053:66:0;;;29118:21:1;29175:2;29155:18;;;29148:30;29214:34;29194:18;;;29187:62;-1:-1:-1;;;29265:18:1;;;29258:39;29314:19;;65053:66:0;28934:405:1;65053:66:0;65176:16;;65164:7;65138:23;65152:8;65138:13;:23::i;:::-;:33;;;;:::i;:::-;65137:55;;;64958:242;-1:-1:-1;;;64958:242:0:o;40437:129::-;40520:40;40530:2;40534:8;40544:11;40520:40;;;;;;;;;;;;:9;:40::i;40296:135::-;40353:4;40392:7;31959:1;40373:26;;:52;;;;-1:-1:-1;;40413:12:0;;-1:-1:-1;40403:22:0;40296:135::o;44180:172::-;44277:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44277:29:0;-1:-1:-1;;;;;44277:29:0;;;;;;;;;44318:28;;44277:24;;44318:28;;;;;;;44180:172;;;:::o;42549:1529::-;42646:35;42684:20;42696:7;42684:11;:20::i;:::-;42755:18;;42646:58;;-1:-1:-1;42713:22:0;;-1:-1:-1;;;;;42739:34:0;24344:10;-1:-1:-1;;;;;42739:34:0;;:81;;;-1:-1:-1;24344:10:0;42784:20;42796:7;42784:11;:20::i;:::-;-1:-1:-1;;;;;42784:36:0;;42739:81;:142;;;-1:-1:-1;42848:18:0;;42831:50;;24344:10;39080:186;:::i;42831:50::-;42713:169;;42907:17;42891:101;;;;-1:-1:-1;;;42891:101:0;;29546:2:1;42891:101:0;;;29528:21:1;29585:2;29565:18;;;29558:30;29624:34;29604:18;;;29597:62;-1:-1:-1;;;29675:18:1;;;29668:48;29733:19;;42891:101:0;29344:414:1;42891:101:0;43039:4;-1:-1:-1;;;;;43017:26:0;:13;:18;;;-1:-1:-1;;;;;43017:26:0;;43001:98;;;;-1:-1:-1;;;43001:98:0;;29965:2:1;43001:98:0;;;29947:21:1;30004:2;29984:18;;;29977:30;30043:34;30023:18;;;30016:62;-1:-1:-1;;;30094:18:1;;;30087:36;30140:19;;43001:98:0;29763:402:1;43001:98:0;-1:-1:-1;;;;;43114:16:0;;43106:66;;;;-1:-1:-1;;;43106:66:0;;30372:2:1;43106:66:0;;;30354:21:1;30411:2;30391:18;;;30384:30;30450:34;30430:18;;;30423:62;-1:-1:-1;;;30501:18:1;;;30494:35;30546:19;;43106:66:0;30170:401:1;43106:66:0;43281:49;43298:1;43302:7;43311:13;:18;;;43281:8;:49::i;:::-;-1:-1:-1;;;;;43339:18:0;;;;;;:12;:18;;;;;:31;;43369:1;;43339:18;:31;;43369:1;;-1:-1:-1;;;;;43339:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;43339:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43377:16:0;;-1:-1:-1;43377:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;43377:16:0;;:29;;-1:-1:-1;;43377:29:0;;:::i;:::-;;;-1:-1:-1;;;;;43377:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43436:43:0;;;;;;;;-1:-1:-1;;;;;43436:43:0;;;;;;43462:15;43436:43;;;;;;;;;-1:-1:-1;43413:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;43413:66:0;-1:-1:-1;;;;;;43413:66:0;;;;;;;;;;;43729:11;43425:7;-1:-1:-1;43729:11:0;:::i;:::-;43792:1;43751:24;;;:11;:24;;;;;:29;43707:33;;-1:-1:-1;;;;;;43751:29:0;43747:236;;43809:20;43817:11;43809:7;:20::i;:::-;43805:171;;;43869:97;;;;;;;;43896:18;;-1:-1:-1;;;;;43869:97:0;;;;;;43927:28;;;;43869:97;;;;;;;;;;-1:-1:-1;43842:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;43842:124:0;-1:-1:-1;;;;;;43842:124:0;;;;;;;;;;;;43805:171;44015:7;44011:2;-1:-1:-1;;;;;43996:27:0;44005:4;-1:-1:-1;;;;;43996:27:0;;;;;;;;;;;44030:42;60830:280;50864:371;50931:21;;50962:12;50959:28;;50978:7;50864:371::o;50959:28::-;51003:6;50999:193;51017:28;;51013:1;:32;50999:193;;;51064:120;51089:25;51115:1;51089:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51089:28:0;51170:3;51143:20;51164:1;51143:23;;;;;;;;:::i;:::-;;;;;;;;;51133:7;:33;;;;:::i;:::-;51132:41;;;;:::i;:::-;51064:10;:120::i;:::-;51047:3;;;;:::i;:::-;;;;50999:193;;;-1:-1:-1;;51222:7:0;51198:21;:31;50864:371::o;52501:88::-;52566:17;;52541:21;;:42;;;;;;;:::i;:::-;;;;-1:-1:-1;;52501:88:0:o;34777:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;34901:7:0;;31959:1;34942:23;;:46;;;;;34976:12;;34969:4;:19;34942:46;34938:706;;;35005:31;35039:17;;;:11;:17;;;;;;;;;35005:51;;;;;;;;;-1:-1:-1;;;;;35005:51:0;;;;;-1:-1:-1;;;35005:51:0;;;;;;;;;;;;35075:28;35071:85;;35131:9;34777:945;-1:-1:-1;;;34777:945:0:o;35071:85::-;-1:-1:-1;;;35452:6:0;35489:17;;;;:11;:17;;;;;;;;;35477:29;;;;;;;;;-1:-1:-1;;;;;35477:29:0;;;;;-1:-1:-1;;;35477:29:0;;;;;;;;;;;;35529:28;35525:93;;35589:9;34777:945;-1:-1:-1;;;34777:945:0:o;35525:93::-;35420:213;;34938:706;35659:57;;-1:-1:-1;;;35659:57:0;;31544:2:1;35659:57:0;;;31526:21:1;31583:2;31563:18;;;31556:30;31622:34;31602:18;;;31595:62;-1:-1:-1;;;31673:18:1;;;31666:45;31728:19;;35659:57:0;31342:411:1;26802:191:0;26876:16;26895:6;;-1:-1:-1;;;;;26912:17:0;;;-1:-1:-1;;;;;;26912:17:0;;;;;;26945:40;;26895:6;;;;;;;26945:40;;26876:16;26945:40;26865:128;26802:191;:::o;50204:279::-;50245:15;50263:22;:20;:22::i;:::-;50245:40;;50306:6;50302:176;50320:19;;50316:1;:23;50302:176;;;50360:108;50387:16;50404:1;50387:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50387:19:0;50452:3;50434:11;50446:1;50434:14;;;;;;;;:::i;50360:108::-;50341:3;;;;:::i;:::-;;;;50302:176;;45969:690;46106:4;-1:-1:-1;;;;;46123:13:0;;2207:19;:23;46119:535;;46162:72;;-1:-1:-1;;;46162:72:0;;-1:-1:-1;;;;;46162:36:0;;;;;:72;;24344:10;;46213:4;;46219:7;;46228:5;;46162:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46162:72:0;;;;;;;;-1:-1:-1;;46162:72:0;;;;;;;;;;;;:::i;:::-;;;46149:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46393:13:0;;46389:215;;46426:61;;-1:-1:-1;;;46426:61:0;;;;;;;:::i;46389:215::-;46572:6;46566:13;46557:6;46553:2;46549:15;46542:38;46149:464;-1:-1:-1;;;;;;46284:55:0;-1:-1:-1;;;46284:55:0;;-1:-1:-1;46277:62:0;;46119:535;-1:-1:-1;46642:4:0;46119:535;45969:690;;;;;;:::o;19095:723::-;19151:13;19372:10;19368:53;;-1:-1:-1;;19399:10:0;;;;;;;;;;;;-1:-1:-1;;;19399:10:0;;;;;19095:723::o;19368:53::-;19446:5;19431:12;19487:78;19494:9;;19487:78;;19520:8;;;;:::i;:::-;;-1:-1:-1;19543:10:0;;-1:-1:-1;19551:2:0;19543:10;;:::i;:::-;;;19487:78;;;19575:19;19607:6;19597:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19597:17:0;;19575:39;;19625:154;19632:10;;19625:154;;19659:11;19669:1;19659:11;;:::i;:::-;;-1:-1:-1;19728:10:0;19736:2;19728:5;:10;:::i;:::-;19715:24;;:2;:24;:::i;:::-;19702:39;;19685:6;19692;19685:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19685:56:0;;;;;;;;-1:-1:-1;19756:11:0;19765:2;19756:11;;:::i;:::-;;;19625:154;;34531:240;34592:7;-1:-1:-1;;;;;34624:19:0;;34608:102;;;;-1:-1:-1;;;34608:102:0;;32825:2:1;34608:102:0;;;32807:21:1;32864:2;32844:18;;;32837:30;32903:34;32883:18;;;32876:62;-1:-1:-1;;;32954:18:1;;;32947:47;33011:19;;34608:102:0;32623:413:1;34608:102:0;-1:-1:-1;;;;;;34732:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;34732:32:0;;-1:-1:-1;;;;;34732:32:0;;34531:240::o;40895:1434::-;41046:12;;-1:-1:-1;;;;;41073:16:0;;41065:62;;;;-1:-1:-1;;;41065:62:0;;33243:2:1;41065:62:0;;;33225:21:1;33282:2;33262:18;;;33255:30;33321:34;33301:18;;;33294:62;-1:-1:-1;;;33372:18:1;;;33365:31;33413:19;;41065:62:0;33041:397:1;41065:62:0;41264:21;41272:12;41264:7;:21::i;:::-;41263:22;41255:64;;;;-1:-1:-1;;;41255:64:0;;33645:2:1;41255:64:0;;;33627:21:1;33684:2;33664:18;;;33657:30;33723:31;33703:18;;;33696:59;33772:18;;41255:64:0;33443:353:1;41255:64:0;41405:20;41401:116;;41458:12;;41446:8;:24;;41438:71;;;;-1:-1:-1;;;41438:71:0;;34003:2:1;41438:71:0;;;33985:21:1;34042:2;34022:18;;;34015:30;34081:34;34061:18;;;34054:62;-1:-1:-1;;;34132:18:1;;;34125:32;34174:19;;41438:71:0;33801:398:1;41438:71:0;-1:-1:-1;;;;;41628:16:0;;41595:30;41628:16;;;:12;:16;;;;;;;;;41595:49;;;;;;;;;-1:-1:-1;;;;;41595:49:0;;;;;-1:-1:-1;;;41595:49:0;;;;;;;;;;;41670:139;;;;;;;;41690:19;;41595:49;;41670:139;;;41690:39;;41720:8;;41690:39;:::i;:::-;-1:-1:-1;;;;;41670:139:0;;;;;41766:11;:35;;41792:8;41766:35;;;41780:1;41766:35;41738:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;41670:139:0;;;;;;-1:-1:-1;;;;;41651:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;41651:158:0;;;;;;;;;;;;41844:43;;;;;;;;;;;41870:15;41844:43;;;;;;;;41816:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41816:71:0;-1:-1:-1;;;;;;41816:71:0;;;;;;;;;;;;;;;;;;41828:12;;41940:281;41964:8;41960:1;:12;41940:281;;;41993:38;;42018:12;;-1:-1:-1;;;;;41993:38:0;;;42010:1;;41993:38;;42010:1;;41993:38;42058:59;42089:1;42093:2;42097:12;42111:5;42058:22;:59::i;:::-;42040:150;;;;-1:-1:-1;;;42040:150:0;;;;;;;:::i;:::-;42199:14;;;;:::i;:::-;;;;41974:3;;;;;:::i;:::-;;;;41940:281;;;-1:-1:-1;42229:12:0;:27;-1:-1:-1;;;;;;40895:1434:0:o;50491:175::-;50564:12;50582:8;-1:-1:-1;;;;;50582:13:0;50603:7;50582:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50563:52;;;50632:7;50624:36;;;;-1:-1:-1;;;50624:36:0;;34616:2:1;50624:36:0;;;34598:21:1;34655:2;34635:18;;;34628:30;-1:-1:-1;;;34674:18:1;;;34667:46;34730:18;;50624:36:0;34414:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;589:131::-;-1:-1:-1;;;;;;663:32:1;;653:43;;643:71;;710:1;707;700:12;725:245;783:6;836:2;824:9;815:7;811:23;807:32;804:52;;;852:1;849;842:12;804:52;891:9;878:23;910:30;934:5;910:30;:::i;1167:173::-;1235:20;;-1:-1:-1;;;;;1284:31:1;;1274:42;;1264:70;;1330:1;1327;1320:12;1264:70;1167:173;;;:::o;1345:186::-;1404:6;1457:2;1445:9;1436:7;1432:23;1428:32;1425:52;;;1473:1;1470;1463:12;1425:52;1496:29;1515:9;1496:29;:::i;1536:254::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1704:29;1723:9;1704:29;:::i;:::-;1694:39;1780:2;1765:18;;;;1752:32;;-1:-1:-1;;;1536:254:1:o;1795:258::-;1867:1;1877:113;1891:6;1888:1;1885:13;1877:113;;;1967:11;;;1961:18;1948:11;;;1941:39;1913:2;1906:10;1877:113;;;2008:6;2005:1;2002:13;1999:48;;;-1:-1:-1;;2043:1:1;2025:16;;2018:27;1795:258::o;2058:::-;2100:3;2138:5;2132:12;2165:6;2160:3;2153:19;2181:63;2237:6;2230:4;2225:3;2221:14;2214:4;2207:5;2203:16;2181:63;:::i;:::-;2298:2;2277:15;-1:-1:-1;;2273:29:1;2264:39;;;;2305:4;2260:50;;2058:258;-1:-1:-1;;2058:258:1:o;2321:220::-;2470:2;2459:9;2452:21;2433:4;2490:45;2531:2;2520:9;2516:18;2508:6;2490:45;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3068:592::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3256:9;3243:23;3285:18;3326:2;3318:6;3315:14;3312:34;;;3342:1;3339;3332:12;3312:34;3380:6;3369:9;3365:22;3355:32;;3425:7;3418:4;3414:2;3410:13;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;3487:2;3474:16;3513:2;3505:6;3502:14;3499:34;;;3529:1;3526;3519:12;3499:34;3574:7;3569:2;3560:6;3556:2;3552:15;3548:24;3545:37;3542:57;;;3595:1;3592;3585:12;3542:57;3626:2;3618:11;;;;;3648:6;;-1:-1:-1;3068:592:1;;-1:-1:-1;;;;3068:592:1:o;3665:328::-;3742:6;3750;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3850:29;3869:9;3850:29;:::i;:::-;3840:39;;3926:2;3915:9;3911:18;3898:32;3888:42;;3949:38;3983:2;3972:9;3968:18;3949:38;:::i;:::-;3939:48;;3665:328;;;;;:::o;3998:118::-;4084:5;4077:13;4070:21;4063:5;4060:32;4050:60;;4106:1;4103;4096:12;4121:315;4186:6;4194;4247:2;4235:9;4226:7;4222:23;4218:32;4215:52;;;4263:1;4260;4253:12;4215:52;4286:29;4305:9;4286:29;:::i;:::-;4276:39;;4365:2;4354:9;4350:18;4337:32;4378:28;4400:5;4378:28;:::i;:::-;4425:5;4415:15;;;4121:315;;;;;:::o;4808:127::-;4869:10;4864:3;4860:20;4857:1;4850:31;4900:4;4897:1;4890:15;4924:4;4921:1;4914:15;4940:631;5004:5;5034:18;5075:2;5067:6;5064:14;5061:40;;;5081:18;;:::i;:::-;5156:2;5150:9;5124:2;5210:15;;-1:-1:-1;;5206:24:1;;;5232:2;5202:33;5198:42;5186:55;;;5256:18;;;5276:22;;;5253:46;5250:72;;;5302:18;;:::i;:::-;5342:10;5338:2;5331:22;5371:6;5362:15;;5401:6;5393;5386:22;5441:3;5432:6;5427:3;5423:16;5420:25;5417:45;;;5458:1;5455;5448:12;5417:45;5508:6;5503:3;5496:4;5488:6;5484:17;5471:44;5563:1;5556:4;5547:6;5539;5535:19;5531:30;5524:41;;;;4940:631;;;;;:::o;5576:666::-;5671:6;5679;5687;5695;5748:3;5736:9;5727:7;5723:23;5719:33;5716:53;;;5765:1;5762;5755:12;5716:53;5788:29;5807:9;5788:29;:::i;:::-;5778:39;;5836:38;5870:2;5859:9;5855:18;5836:38;:::i;:::-;5826:48;;5921:2;5910:9;5906:18;5893:32;5883:42;;5976:2;5965:9;5961:18;5948:32;6003:18;5995:6;5992:30;5989:50;;;6035:1;6032;6025:12;5989:50;6058:22;;6111:4;6103:13;;6099:27;-1:-1:-1;6089:55:1;;6140:1;6137;6130:12;6089:55;6163:73;6228:7;6223:2;6210:16;6205:2;6201;6197:11;6163:73;:::i;:::-;6153:83;;;5576:666;;;;;;;:::o;6247:450::-;6316:6;6369:2;6357:9;6348:7;6344:23;6340:32;6337:52;;;6385:1;6382;6375:12;6337:52;6425:9;6412:23;6458:18;6450:6;6447:30;6444:50;;;6490:1;6487;6480:12;6444:50;6513:22;;6566:4;6558:13;;6554:27;-1:-1:-1;6544:55:1;;6595:1;6592;6585:12;6544:55;6618:73;6683:7;6678:2;6665:16;6660:2;6656;6652:11;6618:73;:::i;6702:383::-;6776:6;6784;6792;6845:2;6833:9;6824:7;6820:23;6816:32;6813:52;;;6861:1;6858;6851:12;6813:52;6884:29;6903:9;6884:29;:::i;:::-;6874:39;;6963:2;6952:9;6948:18;6935:32;6976:28;6998:5;6976:28;:::i;:::-;6702:383;;7023:5;;-1:-1:-1;;;7075:2:1;7060:18;;;;7047:32;;6702:383::o;7090:260::-;7158:6;7166;7219:2;7207:9;7198:7;7194:23;7190:32;7187:52;;;7235:1;7232;7225:12;7187:52;7258:29;7277:9;7258:29;:::i;:::-;7248:39;;7306:38;7340:2;7329:9;7325:18;7306:38;:::i;:::-;7296:48;;7090:260;;;;;:::o;7355:407::-;7557:2;7539:21;;;7596:2;7576:18;;;7569:30;7635:34;7630:2;7615:18;;7608:62;-1:-1:-1;;;7701:2:1;7686:18;;7679:41;7752:3;7737:19;;7355:407::o;8122:410::-;8324:2;8306:21;;;8363:2;8343:18;;;8336:30;8402:34;8397:2;8382:18;;8375:62;-1:-1:-1;;;8468:2:1;8453:18;;8446:44;8522:3;8507:19;;8122:410::o;8537:354::-;8739:2;8721:21;;;8778:2;8758:18;;;8751:30;8817:32;8812:2;8797:18;;8790:60;8882:2;8867:18;;8537:354::o;8896:412::-;9098:2;9080:21;;;9137:2;9117:18;;;9110:30;9176:34;9171:2;9156:18;;9149:62;-1:-1:-1;;;9242:2:1;9227:18;;9220:46;9298:3;9283:19;;8896:412::o;9313:127::-;9374:10;9369:3;9365:20;9362:1;9355:31;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9445:128;9485:3;9516:1;9512:6;9509:1;9506:13;9503:39;;;9522:18;;:::i;:::-;-1:-1:-1;9558:9:1;;9445:128::o;9578:399::-;9780:2;9762:21;;;9819:2;9799:18;;;9792:30;9858:34;9853:2;9838:18;;9831:62;-1:-1:-1;;;9924:2:1;9909:18;;9902:33;9967:3;9952:19;;9578:399::o;10391:380::-;10470:1;10466:12;;;;10513;;;10534:61;;10588:4;10580:6;10576:17;10566:27;;10534:61;10641:2;10633:6;10630:14;10610:18;10607:38;10604:161;;;10687:10;10682:3;10678:20;10675:1;10668:31;10722:4;10719:1;10712:15;10750:4;10747:1;10740:15;10604:161;;10391:380;;;:::o;12596:352::-;12798:2;12780:21;;;12837:2;12817:18;;;12810:30;12876;12871:2;12856:18;;12849:58;12939:2;12924:18;;12596:352::o;13772:135::-;13811:3;-1:-1:-1;;13832:17:1;;13829:43;;;13852:18;;:::i;:::-;-1:-1:-1;13899:1:1;13888:13;;13772:135::o;14327:405::-;14529:2;14511:21;;;14568:2;14548:18;;;14541:30;14607:34;14602:2;14587:18;;14580:62;-1:-1:-1;;;14673:2:1;14658:18;;14651:39;14722:3;14707:19;;14327:405::o;15093:356::-;15295:2;15277:21;;;15314:18;;;15307:30;15373:34;15368:2;15353:18;;15346:62;15440:2;15425:18;;15093:356::o;16204:125::-;16244:4;16272:1;16269;16266:8;16263:34;;;16277:18;;:::i;:::-;-1:-1:-1;16314:9:1;;16204:125::o;17504:168::-;17544:7;17610:1;17606;17602:6;17598:14;17595:1;17592:21;17587:1;17580:9;17573:17;17569:45;17566:71;;;17617:18;;:::i;:::-;-1:-1:-1;17657:9:1;;17504:168::o;17677:184::-;17747:6;17800:2;17788:9;17779:7;17775:23;17771:32;17768:52;;;17816:1;17813;17806:12;17768:52;-1:-1:-1;17839:16:1;;17677:184;-1:-1:-1;17677:184:1:o;19858:245::-;19925:6;19978:2;19966:9;19957:7;19953:23;19949:32;19946:52;;;19994:1;19991;19984:12;19946:52;20026:9;20020:16;20045:28;20067:5;20045:28;:::i;25430:415::-;25632:2;25614:21;;;25671:2;25651:18;;;25644:30;25710:34;25705:2;25690:18;;25683:62;-1:-1:-1;;;25776:2:1;25761:18;;25754:49;25835:3;25820:19;;25430:415::o;26270:127::-;26331:10;26326:3;26322:20;26319:1;26312:31;26362:4;26359:1;26352:15;26386:4;26383:1;26376:15;26402:470;26581:3;26619:6;26613:13;26635:53;26681:6;26676:3;26669:4;26661:6;26657:17;26635:53;:::i;:::-;26751:13;;26710:16;;;;26773:57;26751:13;26710:16;26807:4;26795:17;;26773:57;:::i;:::-;26846:20;;26402:470;-1:-1:-1;;;;26402:470:1:o;30576:246::-;30616:4;-1:-1:-1;;;;;30729:10:1;;;;30699;;30751:12;;;30748:38;;;30766:18;;:::i;:::-;30803:13;;30576:246;-1:-1:-1;;;30576:246:1:o;30827:253::-;30867:3;-1:-1:-1;;;;;30956:2:1;30953:1;30949:10;30986:2;30983:1;30979:10;31017:3;31013:2;31009:12;31004:3;31001:21;30998:47;;;31025:18;;:::i;31085:127::-;31146:10;31141:3;31137:20;31134:1;31127:31;31177:4;31174:1;31167:15;31201:4;31198:1;31191:15;31217:120;31257:1;31283;31273:35;;31288:18;;:::i;:::-;-1:-1:-1;31322:9:1;;31217:120::o;31758:489::-;-1:-1:-1;;;;;32027:15:1;;;32009:34;;32079:15;;32074:2;32059:18;;32052:43;32126:2;32111:18;;32104:34;;;32174:3;32169:2;32154:18;;32147:31;;;31952:4;;32195:46;;32221:19;;32213:6;32195:46;:::i;:::-;32187:54;31758:489;-1:-1:-1;;;;;;31758:489:1:o;32252:249::-;32321:6;32374:2;32362:9;32353:7;32349:23;32345:32;32342:52;;;32390:1;32387;32380:12;32342:52;32422:9;32416:16;32441:30;32465:5;32441:30;:::i;32506:112::-;32538:1;32564;32554:35;;32569:18;;:::i;:::-;-1:-1:-1;32603:9:1;;32506:112::o
Swarm Source
ipfs://7a0177bdd0f8b0b7aed0feead8ca0e8e9f172514eb226a3cc491e70980cadc38
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.