Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 277 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 21457752 | 5 days ago | IN | 0 ETH | 0.00049784 | ||||
Set Approval For... | 20461285 | 145 days ago | IN | 0 ETH | 0.00054538 | ||||
Set Approval For... | 20461274 | 145 days ago | IN | 0 ETH | 0.00052035 | ||||
Set Approval For... | 20354051 | 160 days ago | IN | 0 ETH | 0.00005805 | ||||
Set Approval For... | 20205596 | 180 days ago | IN | 0 ETH | 0.00019319 | ||||
Set Approval For... | 20138788 | 190 days ago | IN | 0 ETH | 0.00013787 | ||||
Set Approval For... | 20102959 | 195 days ago | IN | 0 ETH | 0.00008783 | ||||
Set Approval For... | 20044102 | 203 days ago | IN | 0 ETH | 0.00014488 | ||||
Set Approval For... | 19092630 | 336 days ago | IN | 0 ETH | 0.00041484 | ||||
Set Approval For... | 18375899 | 437 days ago | IN | 0 ETH | 0.0002813 | ||||
Set Approval For... | 18268633 | 452 days ago | IN | 0 ETH | 0.00029958 | ||||
Transfer From | 18105337 | 474 days ago | IN | 0 ETH | 0.00082183 | ||||
Set Approval For... | 17519282 | 557 days ago | IN | 0 ETH | 0.00037785 | ||||
Set Approval For... | 17519282 | 557 days ago | IN | 0 ETH | 0.00037785 | ||||
Set Approval For... | 17519282 | 557 days ago | IN | 0 ETH | 0.0006643 | ||||
Set Approval For... | 17470849 | 563 days ago | IN | 0 ETH | 0.00086218 | ||||
Safe Transfer Fr... | 17377322 | 577 days ago | IN | 0 ETH | 0.00263888 | ||||
Set Approval For... | 17314022 | 586 days ago | IN | 0 ETH | 0.00069457 | ||||
Transfer From | 17054190 | 622 days ago | IN | 0 ETH | 0.00237555 | ||||
Transfer From | 17045907 | 623 days ago | IN | 0 ETH | 0.00264362 | ||||
Transfer From | 17045905 | 623 days ago | IN | 0 ETH | 0.00215683 | ||||
Transfer From | 17042610 | 624 days ago | IN | 0 ETH | 0.00262284 | ||||
Set Approval For... | 16983506 | 632 days ago | IN | 0 ETH | 0.00166413 | ||||
Transfer From | 16919155 | 641 days ago | IN | 0 ETH | 0.00294732 | ||||
Set Approval For... | 16834156 | 653 days ago | IN | 0 ETH | 0.00141986 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MonartNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./Counters.sol"; import "./PaymentSplitter.sol"; import "./Pausable.sol"; contract MonartNFT is ERC721Enumerable, Pausable, PaymentSplitter { using Counters for Counters.Counter; uint256 public maxTotalSupply = 495; uint256 public maxGiftSupply = 30; uint256 public maxCount = 2; uint256 public giftCount; uint256 public presaleCount; uint256 public totalNFT; bool public isBurnEnabled; bool public PublicSaleStarted; bool public PreSaleStarted = false; uint256 public MintPrice = 180000000000000000; string public baseURI; Counters.Counter private _tokenIds; uint256[] private _teamShares = [100]; address[] private _team = [0xb19892F4d4cB90F834c26960611B253EcD3FdA0B]; mapping(address => bool) private _presaleList; mapping(address => uint256) public _presaleClaimed; mapping(address => uint256) public _giftClaimed; mapping(address => uint256) public _saleClaimed; mapping(address => uint256) public _totalClaimed; enum WorkflowStatus { CheckOnPresale, Presale, Sale, SoldOut } WorkflowStatus public workflow; event ChangeIsBurnEnabled(bool _isBurnEnabled); event ChangePublicSaleStarted(bool _PublicSaleStarted); event ChangePreSaleStarted(bool _PreSaleStarted); event ChangeBaseURI(string _baseURI); event ChangeMintPrice(uint256 _MintPrice); event GiftMint(address indexed _recipient, uint256 _amount); event PresaleMint(address indexed _minter, uint256 _amount, uint256 _price); event SaleMint(address indexed _minter, uint256 _amount, uint256 _price); event WorkflowStatusChange( WorkflowStatus previousStatus, WorkflowStatus newStatus ); constructor() ERC721("MonartNFT", "MONART") PaymentSplitter(_team, _teamShares) {} function setBaseURI(string calldata _tokenBaseURI) external onlyOwner { baseURI = _tokenBaseURI; emit ChangeBaseURI(_tokenBaseURI); } function _baseURI() internal view override returns (string memory) { return baseURI; } function addToPresaleList(address[] calldata _addresses) external onlyOwner { for (uint256 ind = 0; ind < _addresses.length; ind++) { require( _addresses[ind] != address(0), "Message: Can't add a zero address" ); if (_presaleList[_addresses[ind]] == false) { _presaleList[_addresses[ind]] = true; } } } function isOnPresaleList(address _address) external view returns (bool) { return _presaleList[_address]; } function removeFromPresaleList(address[] calldata _addresses) external onlyOwner { for (uint256 ind = 0; ind < _addresses.length; ind++) { require( _addresses[ind] != address(0), "Message: Can't remove a zero address" ); if (_presaleList[_addresses[ind]] == true) { _presaleList[_addresses[ind]] = false; } } } function setUpSale(bool _PublicSaleStarted) external onlyOwner { PublicSaleStarted = _PublicSaleStarted; emit ChangePublicSaleStarted(_PublicSaleStarted); PublicSaleStarted = true; emit ChangePublicSaleStarted(true); maxCount = 2; workflow = WorkflowStatus.Sale; emit WorkflowStatusChange(WorkflowStatus.Presale, WorkflowStatus.Sale); } function getPrice() public view returns (uint256) { return MintPrice; } function setPreSaleStarted(bool _PreSaleStarted) external onlyOwner { PreSaleStarted = _PreSaleStarted; emit ChangePreSaleStarted(_PreSaleStarted); } function setPublicSaleStarted(bool _PublicSaleStarted) external onlyOwner { PublicSaleStarted = _PublicSaleStarted; emit ChangePublicSaleStarted(_PublicSaleStarted); } function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner { isBurnEnabled = _isBurnEnabled; emit ChangeIsBurnEnabled(_isBurnEnabled); } function setPrice(uint256 _amount) external onlyOwner { MintPrice = _amount * 10000000000000000; emit ChangeMintPrice(_amount * 10000000000000000); } function giftMint(address[] calldata _addresses) external onlyOwner whenNotPaused { require( totalNFT + _addresses.length <= maxTotalSupply, "Message: max total supply exceeded" ); require( giftCount + _addresses.length <= maxGiftSupply, "Message: max gift supply exceeded" ); uint256 _newItemId; for (uint256 ind = 0; ind < _addresses.length; ind++) { require( _addresses[ind] != address(0), "Message: recepient is the null address" ); _tokenIds.increment(); _newItemId = _tokenIds.current(); _safeMint(_addresses[ind], _newItemId); _giftClaimed[_addresses[ind]] = _giftClaimed[_addresses[ind]] + 1; _totalClaimed[_addresses[ind]] = _totalClaimed[_addresses[ind]] + 1; totalNFT = totalNFT + 1; giftCount = giftCount + 1; } } function presaleMint(uint256 _amount) internal { require(PreSaleStarted == true, "You are not on the whitelist"); require( _presaleList[msg.sender] == true, "You are not on the whitelist" ); require( _presaleClaimed[msg.sender] + _amount <= maxCount, "You can only mint 2 tokens" ); require( totalNFT + _amount <= maxTotalSupply, "Message: max supply exceeded" ); uint256 _price = getPrice(); require( _price * _amount <= msg.value, "Message: Ether value sent is not correct" ); uint256 _newItemId; for (uint256 ind = 0; ind < _amount; ind++) { _tokenIds.increment(); _newItemId = _tokenIds.current(); _safeMint(msg.sender, _newItemId); _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + _amount; _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount; totalNFT = totalNFT + 1; presaleCount = presaleCount + 1; } emit PresaleMint(msg.sender, _amount, _price); } function saleMint(uint256 _amount) internal { require(PublicSaleStarted == true, "Sale isn't started."); require(_amount > 0, "Message: zero amount"); require(_amount <= maxCount, "Can only mint 2 tokens at a time"); require( totalNFT + _amount <= maxTotalSupply, "Message: max supply exceeded" ); uint256 _price = getPrice(); require( _price * _amount <= msg.value, "Message: Ether value sent is not correct" ); uint256 _newItemId; for (uint256 ind = 0; ind < _amount; ind++) { _tokenIds.increment(); _newItemId = _tokenIds.current(); _safeMint(msg.sender, _newItemId); _saleClaimed[msg.sender] = _saleClaimed[msg.sender] + _amount; _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount; totalNFT = totalNFT + 1; } emit SaleMint(msg.sender, _amount, _price); } function mainMint(uint256 _amount) external payable whenNotPaused { if (PublicSaleStarted == false) { presaleMint(_amount); } else { saleMint(_amount); } if (totalNFT + _amount == maxTotalSupply) { workflow = WorkflowStatus.SoldOut; emit WorkflowStatusChange( WorkflowStatus.Sale, WorkflowStatus.SoldOut ); } } function burn(uint256 tokenId) external { require(isBurnEnabled, "Message: burning disabled"); require( _isApprovedOrOwner(msg.sender, tokenId), "Message: burn caller is not owner" ); _burn(tokenId); totalNFT = totalNFT - 1; } function getWorkflowStatus() public view returns (uint256) { uint256 _status; if (workflow == WorkflowStatus.CheckOnPresale) { _status = 1; } if (workflow == WorkflowStatus.Presale) { _status = 2; } if (workflow == WorkflowStatus.Sale) { _status = 3; } if (workflow == WorkflowStatus.SoldOut) { _status = 4; } return _status; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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 tokenId); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./Ownable.sol"; /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused, "Transaction is not available"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused, "Transaction is available"); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused { paused = false; emit Unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Address.sol"; import "./Context.sol"; import "./SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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); } }
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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"ChangeIsBurnEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"ChangeMintPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"ChangePreSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"ChangePublicSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GiftMint","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SaleMint","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"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum MonartNFT.WorkflowStatus","name":"previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum MonartNFT.WorkflowStatus","name":"newStatus","type":"uint8"}],"name":"WorkflowStatusChange","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_giftClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_saleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleList","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWorkflowStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isOnPresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mainMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setPublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum MonartNFT.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600a805460ff60a01b191690556101ef601055601e60115560026012556016805462ff00001916905567027f7d0bdb92000060175560a0604052606460809081526200005090601a9060016200055c565b50604080516020810190915273b19892f4d4cb90f834c26960611b253ecd3fda0b81526200008390601b906001620005b1565b503480156200009157600080fd5b50601b805480602002602001604051908101604052809291908181526020018280548015620000ea57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000cb575b5050505050601a8054806020026020016040519081016040528092919081815260200182805480156200013d57602002820191906000526020600020905b81548152602001906001019080831162000128575b50506040805180820182526009815268135bdb985c9d13919560ba1b6020808301918252835180850190945260068452651353d390549560d21b9084015281519195509193506200019392506000919062000609565b508051620001a990600190602084019062000609565b505050620001c6620001c06200031860201b60201c565b6200031c565b8051825114620002385760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200028b5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200022f565b60005b82518110156200030f57620002fa838281518110620002bd57634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620002e657634e487b7160e01b600052603260045260246000fd5b60200260200101516200036e60201b60201c565b806200030681620006f5565b9150506200028e565b50505062000729565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003db5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200022f565b600081116200042d5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200022f565b6001600160a01b0382166000908152600d602052604090205415620004a95760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200022f565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620005139082906200069d565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280548282559060005260206000209081019282156200059f579160200282015b828111156200059f578251829060ff169055916020019190600101906200057d565b50620005ad92915062000686565b5090565b8280548282559060005260206000209081019282156200059f579160200282015b828111156200059f57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005d2565b8280546200061790620006b8565b90600052602060002090601f0160209004810192826200063b57600085556200059f565b82601f106200065657805160ff19168380011785556200059f565b828001600101855582156200059f579182015b828111156200059f57825182559160200191906001019062000669565b5b80821115620005ad576000815560010162000687565b60008219821115620006b357620006b362000713565b500190565b600181811c90821680620006cd57607f821691505b60208210811415620006ef57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200070c576200070c62000713565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613c0c80620007396000396000f3fe6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b61041636600461374a565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f29190613907565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b506104876104823660046137dd565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba366004613695565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046134f4565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046134f4565b610d9d565b34801561052f57600080fd5b506104bf61053e366004613548565b610f6e565b34801561054f57600080fd5b506104bf61055e366004613730565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e8610594366004613695565b6110ad565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611143565b3480156105cf57600080fd5b506104bf6105de366004613548565b6111fe565b3480156105ef57600080fd5b506104bf6105fe3660046137dd565b611219565b34801561060f57600080fd5b506103e861061e3660046137dd565b6112e9565b34801561062f57600080fd5b506103e861063e3660046134f4565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b366004613782565b61138a565b34801561067c57600080fd5b506104bf61068b366004613730565b6113fe565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e23660046137dd565b611471565b3480156106f357600080fd5b506104406114e8565b34801561070857600080fd5b506104bf610717366004613730565b611576565b34801561072857600080fd5b506103e86107373660046134f4565b6115e1565b34801561074857600080fd5b506104bf611668565b34801561075d57600080fd5b506104bf61076c3660046136c0565b61169e565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046134f4565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf61183b565b3480156107dd57600080fd5b506104876107ec3660046137dd565b6118cd565b3480156107fd57600080fd5b506103e861080c3660046134f4565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf6108773660046137dd565b61190b565b34801561088857600080fd5b50610440611989565b34801561089d57600080fd5b506103e86108ac3660046134f4565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d366004613661565b611998565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f291906138af565b34801561094557600080fd5b506104bf6109543660046136c0565b611a5d565b34801561096557600080fd5b506104bf6109743660046136c0565b611e24565b34801561098557600080fd5b506104bf610994366004613588565b611fc9565b3480156109a557600080fd5b506104406109b43660046137dd565b611ffb565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046134f4565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046134f4565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e366004613730565b6120d6565b348015610a7f57600080fd5b5061041b610a8e366004613510565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046134f4565b61214b565b6104bf610b003660046137dd565b6121e6565b348015610b1157600080fd5b506103e861228f565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b558261235a565b92915050565b606060008054610b6a90613aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690613aff565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611471565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836123aa565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e219190613a71565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613a9d565b610e629190613a89565b610e6c9190613abc565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef3908290613a71565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a908290613a71565b600c55610f278382612418565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612531565b610f945760405162461bcd60e51b8152600401610c62906139a1565b610d98838383612628565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c629061396c565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600260128190556021805460ff1916821790556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a291600191906138bd565b60405180910390a150565b60006110b8836115e1565b821061111a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff166111c65760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611fc9565b60165460ff1661126b5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112753382612531565b6112cb5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d4816127d3565b60016015546112e39190613abc565b60155550565b60006112f460085490565b82106113575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061137857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146113b45760405162461bcd60e51b8152600401610c629061396c565b6113c06018838361344b565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113f29291906138d8565b60405180910390a15050565b600a546001600160a01b031633146114285760405162461bcd60e51b8152600401610c629061396c565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a290831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114f590613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613aff565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b505050505081565b600a546001600160a01b031633146115a05760405162461bcd60e51b8152600401610c629061396c565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a2565b60006001600160a01b03821661164c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116925760405162461bcd60e51b8152600401610c629061396c565b61169c600061287a565b565b600a546001600160a01b031633146116c85760405162461bcd60e51b8152600401610c629061396c565b60005b81811015610d985760008383838181106116f557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061170a91906134f4565b6001600160a01b0316141561176b5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061178f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117a491906134f4565b6001600160a01b0316815260208101919091526040016000205460ff16611829576001601c60008585858181106117eb57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061180091906134f4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061183381613b3a565b9150506116cb565b600a546001600160a01b031633146118655760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff161561188f5760405162461bcd60e51b8152600401610c6290613a3a565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146119355760405162461bcd60e51b8152600401610c629061396c565b61194681662386f26fc10000613a9d565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661197b82662386f26fc10000613a9d565b6040519081526020016110a2565b606060018054610b6a90613aff565b6001600160a01b0382163314156119f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a875760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff1615611ab15760405162461bcd60e51b8152600401610c6290613a3a565b601054601554611ac2908390613a71565b1115611b1b5760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611b2c908390613a71565b1115611b845760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611e1e576000848483818110611bb257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611bc791906134f4565b6001600160a01b03161415611c2d5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611c3b601980546001019055565b6019549150611c7e848483818110611c6357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c7891906134f4565b836128cc565b601e6000858584818110611ca257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611cb791906134f4565b6001600160a01b03168152602081019190915260400160002054611cdc906001613a71565b601e6000868685818110611d0057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d1591906134f4565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611d5d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d7291906134f4565b6001600160a01b03168152602081019190915260400160002054611d97906001613a71565b60206000868685818110611dbb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611dd091906134f4565b6001600160a01b03168152602081019190915260400160002055601554611df8906001613a71565b601555601354611e09906001613a71565b60135580611e1681613b3a565b915050611b88565b50505050565b600a546001600160a01b03163314611e4e5760405162461bcd60e51b8152600401610c629061396c565b60005b81811015610d98576000838383818110611e7b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e9091906134f4565b6001600160a01b03161415611ef35760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611f1757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f2c91906134f4565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611fb7576000601c6000858585818110611f7957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f8e91906134f4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611fc181613b3a565b915050611e51565b611fd33383612531565b611fef5760405162461bcd60e51b8152600401610c62906139a1565b611e1e848484846128ea565b6000818152600260205260409020546060906001600160a01b031661207a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b600061208461291d565b905060008151116120a457604051806020016040528060008152506120cf565b806120ae8461292c565b6040516020016120bf929190613843565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146121005760405162461bcd60e51b8152600401610c629061396c565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a290831515815260200190565b600a546001600160a01b031633146121755760405162461bcd60e51b8152600401610c629061396c565b6001600160a01b0381166121da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b6121e38161287a565b50565b600a54600160a01b900460ff16156122105760405162461bcd60e51b8152600401610c6290613a3a565b601654610100900460ff1661222d5761222881612a46565b612236565b61223681612cf6565b601054816015546122479190613a71565b14156121e3576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a291600291906138bd565b6000808060215460ff1660038111156122b857634e487b7160e01b600052602160045260246000fd5b14156122c2575060015b600160215460ff1660038111156122e957634e487b7160e01b600052602160045260246000fd5b14156122f3575060025b600260215460ff16600381111561231a57634e487b7160e01b600052602160045260246000fd5b1415612324575060035b600360215460ff16600381111561234b57634e487b7160e01b600052602160045260246000fd5b1415612355575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061238b57506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123df82611471565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156124685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146124b5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ba565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166125aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006125b583611471565b9050806001600160a01b0316846001600160a01b031614806125f05750836001600160a01b03166125e584610bed565b6001600160a01b0316145b8061262057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661263b82611471565b6001600160a01b0316146126a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b0382166127055760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612710838383612f4b565b61271b6000826123aa565b6001600160a01b0383166000908152600360205260408120805460019290612744908490613abc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612772908490613a71565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127de82611471565b90506127ec81600084612f4b565b6127f76000836123aa565b6001600160a01b0381166000908152600360205260408120805460019290612820908490613abc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6128e6828260405180602001604052806000815250613003565b5050565b6128f5848484612628565b61290184848484613036565b611e1e5760405162461bcd60e51b8152600401610c629061391a565b606060188054610b6a90613aff565b6060816129505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561297a578061296481613b3a565b91506129739050600a83613a89565b9150612954565b60008167ffffffffffffffff8111156129a357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cd576020820181803683370190505b5090505b8415612620576129e2600183613abc565b91506129ef600a86613b55565b6129fa906030613a71565b60f81b818381518110612a1d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a3f600a86613a89565b94506129d1565b60165462010000900460ff161515600114612aa35760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b336000908152601c602052604090205460ff161515600114612b075760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b601254336000908152601d6020526040902054612b25908390613a71565b1115612b735760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610c62565b60105481601554612b849190613a71565b1115612bd25760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612bdd60175490565b905034612bea8383613a9d565b1115612c085760405162461bcd60e51b8152600401610c62906139f2565b6000805b83811015612cb457612c22601980546001019055565b6019549150612c3133836128cc565b336000908152601d6020526040902054612c4c908590613a71565b336000908152601d602090815260408083209390935580522054612c71908590613a71565b336000908152602080526040902055601554612c8e906001613a71565b601555601454612c9f906001613a71565b60145580612cac81613b3a565b915050612c0c565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612d495760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612d905760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612de25760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d656044820152606401610c62565b60105481601554612df39190613a71565b1115612e415760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612e4c60175490565b905034612e598383613a9d565b1115612e775760405162461bcd60e51b8152600401610c62906139f2565b6000805b83811015612f1257612e91601980546001019055565b6019549150612ea033836128cc565b336000908152601f6020526040902054612ebb908590613a71565b336000908152601f602090815260408083209390935580522054612ee0908590613a71565b336000908152602080526040902055601554612efd906001613a71565b60155580612f0a81613b3a565b915050612e7b565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612ce9565b6001600160a01b038316612fa657612fa181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612fc9565b816001600160a01b0316836001600160a01b031614612fc957612fc98382613143565b6001600160a01b038216612fe057610d98816131e0565b826001600160a01b0316826001600160a01b031614610d9857610d9882826132b9565b61300d83836132fd565b61301a6000848484613036565b610d985760405162461bcd60e51b8152600401610c629061391a565b60006001600160a01b0384163b1561313857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061307a903390899088908890600401613872565b602060405180830381600087803b15801561309457600080fd5b505af19250505080156130c4575060408051601f3d908101601f191682019092526130c191810190613766565b60015b61311e573d8080156130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b5080516131165760405162461bcd60e51b8152600401610c629061391a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612620565b506001949350505050565b60006001613150846115e1565b61315a9190613abc565b6000838152600760205260409020549091508082146131ad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131f290600190613abc565b6000838152600960205260408120546008805493945090928490811061322857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061325757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061329d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132c4836115e1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166133535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b0316156133b85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b6133c460008383612f4b565b6001600160a01b03821660009081526003602052604081208054600192906133ed908490613a71565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461345790613aff565b90600052602060002090601f01602090048101928261347957600085556134bf565b82601f106134925782800160ff198235161785556134bf565b828001600101855582156134bf579182015b828111156134bf5782358255916020019190600101906134a4565b506134cb9291506134cf565b5090565b5b808211156134cb57600081556001016134d0565b8035801515811461235557600080fd5b600060208284031215613505578081fd5b81356120cf81613bab565b60008060408385031215613522578081fd5b823561352d81613bab565b9150602083013561353d81613bab565b809150509250929050565b60008060006060848603121561355c578081fd5b833561356781613bab565b9250602084013561357781613bab565b929592945050506040919091013590565b6000806000806080858703121561359d578081fd5b84356135a881613bab565b935060208501356135b881613bab565b925060408501359150606085013567ffffffffffffffff808211156135db578283fd5b818701915087601f8301126135ee578283fd5b81358181111561360057613600613b95565b604051601f8201601f19908116603f0116810190838211818310171561362857613628613b95565b816040528281528a6020848701011115613640578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215613673578182fd5b823561367e81613bab565b915061368c602084016134e4565b90509250929050565b600080604083850312156136a7578182fd5b82356136b281613bab565b946020939093013593505050565b600080602083850312156136d2578182fd5b823567ffffffffffffffff808211156136e9578384fd5b818501915085601f8301126136fc578384fd5b81358181111561370a578485fd5b8660208260051b850101111561371e578485fd5b60209290920196919550909350505050565b600060208284031215613741578081fd5b6120cf826134e4565b60006020828403121561375b578081fd5b81356120cf81613bc0565b600060208284031215613777578081fd5b81516120cf81613bc0565b60008060208385031215613794578182fd5b823567ffffffffffffffff808211156137ab578384fd5b818501915085601f8301126137be578384fd5b8135818111156137cc578485fd5b86602082850101111561371e578485fd5b6000602082840312156137ee578081fd5b5035919050565b6000815180845261380d816020860160208601613ad3565b601f01601f19169290920160200192915050565b6004811061383f57634e487b7160e01b600052602160045260246000fd5b9052565b60008351613855818460208801613ad3565b835190830190613869818360208801613ad3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138a5908301846137f5565b9695505050505050565b60208101610b558284613821565b604081016138cb8285613821565b6120cf6020830184613821565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006120cf60208301846137f5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b60008219821115613a8457613a84613b69565b500190565b600082613a9857613a98613b7f565b500490565b6000816000190483118215151615613ab757613ab7613b69565b500290565b600082821015613ace57613ace613b69565b500390565b60005b83811015613aee578181015183820152602001613ad6565b83811115611e1e5750506000910152565b600181811c90821680613b1357607f821691505b60208210811415613b3457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b4e57613b4e613b69565b5060010190565b600082613b6457613b64613b7f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121e357600080fd5b6001600160e01b0319811681146121e357600080fdfea26469706673582212206c63e10928f17eec9a454288852addd505b5c35fd1517e349bf4fa104cdf887164736f6c63430008040033
Deployed Bytecode
0x6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b61041636600461374a565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f29190613907565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b506104876104823660046137dd565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba366004613695565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046134f4565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046134f4565b610d9d565b34801561052f57600080fd5b506104bf61053e366004613548565b610f6e565b34801561054f57600080fd5b506104bf61055e366004613730565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e8610594366004613695565b6110ad565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611143565b3480156105cf57600080fd5b506104bf6105de366004613548565b6111fe565b3480156105ef57600080fd5b506104bf6105fe3660046137dd565b611219565b34801561060f57600080fd5b506103e861061e3660046137dd565b6112e9565b34801561062f57600080fd5b506103e861063e3660046134f4565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b366004613782565b61138a565b34801561067c57600080fd5b506104bf61068b366004613730565b6113fe565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e23660046137dd565b611471565b3480156106f357600080fd5b506104406114e8565b34801561070857600080fd5b506104bf610717366004613730565b611576565b34801561072857600080fd5b506103e86107373660046134f4565b6115e1565b34801561074857600080fd5b506104bf611668565b34801561075d57600080fd5b506104bf61076c3660046136c0565b61169e565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046134f4565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf61183b565b3480156107dd57600080fd5b506104876107ec3660046137dd565b6118cd565b3480156107fd57600080fd5b506103e861080c3660046134f4565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf6108773660046137dd565b61190b565b34801561088857600080fd5b50610440611989565b34801561089d57600080fd5b506103e86108ac3660046134f4565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d366004613661565b611998565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f291906138af565b34801561094557600080fd5b506104bf6109543660046136c0565b611a5d565b34801561096557600080fd5b506104bf6109743660046136c0565b611e24565b34801561098557600080fd5b506104bf610994366004613588565b611fc9565b3480156109a557600080fd5b506104406109b43660046137dd565b611ffb565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046134f4565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046134f4565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e366004613730565b6120d6565b348015610a7f57600080fd5b5061041b610a8e366004613510565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046134f4565b61214b565b6104bf610b003660046137dd565b6121e6565b348015610b1157600080fd5b506103e861228f565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b558261235a565b92915050565b606060008054610b6a90613aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690613aff565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611471565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836123aa565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e219190613a71565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613a9d565b610e629190613a89565b610e6c9190613abc565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef3908290613a71565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a908290613a71565b600c55610f278382612418565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612531565b610f945760405162461bcd60e51b8152600401610c62906139a1565b610d98838383612628565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c629061396c565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600260128190556021805460ff1916821790556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a291600191906138bd565b60405180910390a150565b60006110b8836115e1565b821061111a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff166111c65760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611fc9565b60165460ff1661126b5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112753382612531565b6112cb5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d4816127d3565b60016015546112e39190613abc565b60155550565b60006112f460085490565b82106113575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061137857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146113b45760405162461bcd60e51b8152600401610c629061396c565b6113c06018838361344b565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113f29291906138d8565b60405180910390a15050565b600a546001600160a01b031633146114285760405162461bcd60e51b8152600401610c629061396c565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a290831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114f590613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613aff565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b505050505081565b600a546001600160a01b031633146115a05760405162461bcd60e51b8152600401610c629061396c565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a2565b60006001600160a01b03821661164c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116925760405162461bcd60e51b8152600401610c629061396c565b61169c600061287a565b565b600a546001600160a01b031633146116c85760405162461bcd60e51b8152600401610c629061396c565b60005b81811015610d985760008383838181106116f557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061170a91906134f4565b6001600160a01b0316141561176b5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061178f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117a491906134f4565b6001600160a01b0316815260208101919091526040016000205460ff16611829576001601c60008585858181106117eb57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061180091906134f4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061183381613b3a565b9150506116cb565b600a546001600160a01b031633146118655760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff161561188f5760405162461bcd60e51b8152600401610c6290613a3a565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146119355760405162461bcd60e51b8152600401610c629061396c565b61194681662386f26fc10000613a9d565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661197b82662386f26fc10000613a9d565b6040519081526020016110a2565b606060018054610b6a90613aff565b6001600160a01b0382163314156119f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a875760405162461bcd60e51b8152600401610c629061396c565b600a54600160a01b900460ff1615611ab15760405162461bcd60e51b8152600401610c6290613a3a565b601054601554611ac2908390613a71565b1115611b1b5760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611b2c908390613a71565b1115611b845760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611e1e576000848483818110611bb257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611bc791906134f4565b6001600160a01b03161415611c2d5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611c3b601980546001019055565b6019549150611c7e848483818110611c6357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c7891906134f4565b836128cc565b601e6000858584818110611ca257634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611cb791906134f4565b6001600160a01b03168152602081019190915260400160002054611cdc906001613a71565b601e6000868685818110611d0057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d1591906134f4565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611d5d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d7291906134f4565b6001600160a01b03168152602081019190915260400160002054611d97906001613a71565b60206000868685818110611dbb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611dd091906134f4565b6001600160a01b03168152602081019190915260400160002055601554611df8906001613a71565b601555601354611e09906001613a71565b60135580611e1681613b3a565b915050611b88565b50505050565b600a546001600160a01b03163314611e4e5760405162461bcd60e51b8152600401610c629061396c565b60005b81811015610d98576000838383818110611e7b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e9091906134f4565b6001600160a01b03161415611ef35760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611f1757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f2c91906134f4565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611fb7576000601c6000858585818110611f7957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f8e91906134f4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611fc181613b3a565b915050611e51565b611fd33383612531565b611fef5760405162461bcd60e51b8152600401610c62906139a1565b611e1e848484846128ea565b6000818152600260205260409020546060906001600160a01b031661207a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b600061208461291d565b905060008151116120a457604051806020016040528060008152506120cf565b806120ae8461292c565b6040516020016120bf929190613843565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146121005760405162461bcd60e51b8152600401610c629061396c565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a290831515815260200190565b600a546001600160a01b031633146121755760405162461bcd60e51b8152600401610c629061396c565b6001600160a01b0381166121da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b6121e38161287a565b50565b600a54600160a01b900460ff16156122105760405162461bcd60e51b8152600401610c6290613a3a565b601654610100900460ff1661222d5761222881612a46565b612236565b61223681612cf6565b601054816015546122479190613a71565b14156121e3576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a291600291906138bd565b6000808060215460ff1660038111156122b857634e487b7160e01b600052602160045260246000fd5b14156122c2575060015b600160215460ff1660038111156122e957634e487b7160e01b600052602160045260246000fd5b14156122f3575060025b600260215460ff16600381111561231a57634e487b7160e01b600052602160045260246000fd5b1415612324575060035b600360215460ff16600381111561234b57634e487b7160e01b600052602160045260246000fd5b1415612355575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061238b57506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123df82611471565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156124685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146124b5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ba565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166125aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006125b583611471565b9050806001600160a01b0316846001600160a01b031614806125f05750836001600160a01b03166125e584610bed565b6001600160a01b0316145b8061262057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661263b82611471565b6001600160a01b0316146126a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b0382166127055760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612710838383612f4b565b61271b6000826123aa565b6001600160a01b0383166000908152600360205260408120805460019290612744908490613abc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612772908490613a71565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127de82611471565b90506127ec81600084612f4b565b6127f76000836123aa565b6001600160a01b0381166000908152600360205260408120805460019290612820908490613abc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6128e6828260405180602001604052806000815250613003565b5050565b6128f5848484612628565b61290184848484613036565b611e1e5760405162461bcd60e51b8152600401610c629061391a565b606060188054610b6a90613aff565b6060816129505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561297a578061296481613b3a565b91506129739050600a83613a89565b9150612954565b60008167ffffffffffffffff8111156129a357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cd576020820181803683370190505b5090505b8415612620576129e2600183613abc565b91506129ef600a86613b55565b6129fa906030613a71565b60f81b818381518110612a1d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a3f600a86613a89565b94506129d1565b60165462010000900460ff161515600114612aa35760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b336000908152601c602052604090205460ff161515600114612b075760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b601254336000908152601d6020526040902054612b25908390613a71565b1115612b735760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610c62565b60105481601554612b849190613a71565b1115612bd25760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612bdd60175490565b905034612bea8383613a9d565b1115612c085760405162461bcd60e51b8152600401610c62906139f2565b6000805b83811015612cb457612c22601980546001019055565b6019549150612c3133836128cc565b336000908152601d6020526040902054612c4c908590613a71565b336000908152601d602090815260408083209390935580522054612c71908590613a71565b336000908152602080526040902055601554612c8e906001613a71565b601555601454612c9f906001613a71565b60145580612cac81613b3a565b915050612c0c565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612d495760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612d905760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612de25760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d656044820152606401610c62565b60105481601554612df39190613a71565b1115612e415760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612e4c60175490565b905034612e598383613a9d565b1115612e775760405162461bcd60e51b8152600401610c62906139f2565b6000805b83811015612f1257612e91601980546001019055565b6019549150612ea033836128cc565b336000908152601f6020526040902054612ebb908590613a71565b336000908152601f602090815260408083209390935580522054612ee0908590613a71565b336000908152602080526040902055601554612efd906001613a71565b60155580612f0a81613b3a565b915050612e7b565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612ce9565b6001600160a01b038316612fa657612fa181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612fc9565b816001600160a01b0316836001600160a01b031614612fc957612fc98382613143565b6001600160a01b038216612fe057610d98816131e0565b826001600160a01b0316826001600160a01b031614610d9857610d9882826132b9565b61300d83836132fd565b61301a6000848484613036565b610d985760405162461bcd60e51b8152600401610c629061391a565b60006001600160a01b0384163b1561313857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061307a903390899088908890600401613872565b602060405180830381600087803b15801561309457600080fd5b505af19250505080156130c4575060408051601f3d908101601f191682019092526130c191810190613766565b60015b61311e573d8080156130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b5080516131165760405162461bcd60e51b8152600401610c629061391a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612620565b506001949350505050565b60006001613150846115e1565b61315a9190613abc565b6000838152600760205260409020549091508082146131ad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131f290600190613abc565b6000838152600960205260408120546008805493945090928490811061322857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061325757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061329d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132c4836115e1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166133535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b0316156133b85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b6133c460008383612f4b565b6001600160a01b03821660009081526003602052604081208054600192906133ed908490613a71565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461345790613aff565b90600052602060002090601f01602090048101928261347957600085556134bf565b82601f106134925782800160ff198235161785556134bf565b828001600101855582156134bf579182015b828111156134bf5782358255916020019190600101906134a4565b506134cb9291506134cf565b5090565b5b808211156134cb57600081556001016134d0565b8035801515811461235557600080fd5b600060208284031215613505578081fd5b81356120cf81613bab565b60008060408385031215613522578081fd5b823561352d81613bab565b9150602083013561353d81613bab565b809150509250929050565b60008060006060848603121561355c578081fd5b833561356781613bab565b9250602084013561357781613bab565b929592945050506040919091013590565b6000806000806080858703121561359d578081fd5b84356135a881613bab565b935060208501356135b881613bab565b925060408501359150606085013567ffffffffffffffff808211156135db578283fd5b818701915087601f8301126135ee578283fd5b81358181111561360057613600613b95565b604051601f8201601f19908116603f0116810190838211818310171561362857613628613b95565b816040528281528a6020848701011115613640578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215613673578182fd5b823561367e81613bab565b915061368c602084016134e4565b90509250929050565b600080604083850312156136a7578182fd5b82356136b281613bab565b946020939093013593505050565b600080602083850312156136d2578182fd5b823567ffffffffffffffff808211156136e9578384fd5b818501915085601f8301126136fc578384fd5b81358181111561370a578485fd5b8660208260051b850101111561371e578485fd5b60209290920196919550909350505050565b600060208284031215613741578081fd5b6120cf826134e4565b60006020828403121561375b578081fd5b81356120cf81613bc0565b600060208284031215613777578081fd5b81516120cf81613bc0565b60008060208385031215613794578182fd5b823567ffffffffffffffff808211156137ab578384fd5b818501915085601f8301126137be578384fd5b8135818111156137cc578485fd5b86602082850101111561371e578485fd5b6000602082840312156137ee578081fd5b5035919050565b6000815180845261380d816020860160208601613ad3565b601f01601f19169290920160200192915050565b6004811061383f57634e487b7160e01b600052602160045260246000fd5b9052565b60008351613855818460208801613ad3565b835190830190613869818360208801613ad3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138a5908301846137f5565b9695505050505050565b60208101610b558284613821565b604081016138cb8285613821565b6120cf6020830184613821565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006120cf60208301846137f5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b60008219821115613a8457613a84613b69565b500190565b600082613a9857613a98613b7f565b500490565b6000816000190483118215151615613ab757613ab7613b69565b500290565b600082821015613ace57613ace613b69565b500390565b60005b83811015613aee578181015183820152602001613ad6565b83811115611e1e5750506000910152565b600181811c90821680613b1357607f821691505b60208210811415613b3457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b4e57613b4e613b69565b5060010190565b600082613b6457613b64613b7f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121e357600080fd5b6001600160e01b0319811681146121e357600080fdfea26469706673582212206c63e10928f17eec9a454288852addd505b5c35fd1517e349bf4fa104cdf887164736f6c63430008040033
Deployed Bytecode Sourcemap
196:8654:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2635:40:14;666:10:1;2635:40:14;;;-1:-1:-1;;;;;7394:32:17;;;7376:51;;2665:9:14;7458:2:17;7443:18;;7436:34;7349:18;2635:40:14;;;;;;;196:8654:11;;;;;486:23;;;;;;;;;;;;;;;;;;;24603:25:17;;;24591:2;24576:18;486:23:11;;;;;;;;909:222:5;;;;;;;;;;-1:-1:-1;909:222:5;;;;;:::i;:::-;;:::i;:::-;;;8418:14:17;;8411:22;8393:41;;8381:2;8366:18;909:222:5;8348:92:17;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;515:25:11:-;;;;;;;;;;-1:-1:-1;515:25:11;;;;;;;;3860:217:4;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7150:32:17;;;7132:51;;7120:2;7105:18;3860:217:4;7087:102:17;3398:401:4;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;:::-;;1018:47:11;;;;;;;;;;-1:-1:-1;1018:47:11;;;;;:::i;:::-;;;;;;;;;;;;;;1534:111:5;;;;;;;;;;-1:-1:-1;1621:10:5;:17;1534:111;;3799:600:14;;;;;;;;;;-1:-1:-1;3799:600:14;;;;;:::i;:::-;;:::i;4724:330:4:-;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;3247:396:11:-;;;;;;;;;;-1:-1:-1;3247:396:11;;;;;:::i;:::-;;:::i;310:35::-;;;;;;;;;;;;;;;;1210:253:5;;;;;;;;;;-1:-1:-1;1210:253:5;;;;;:::i;:::-;;:::i;2760:89:14:-;;;;;;;;;;-1:-1:-1;2830:12:14;;2760:89;;983:102:13;;;;;;;;;;;;;:::i;5120:179:4:-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;8089:294:11:-;;;;;;;;;;-1:-1:-1;8089:294:11;;;;;:::i;:::-;;:::i;1717:230:5:-;;;;;;;;;;-1:-1:-1;1717:230:5;;;;;:::i;:::-;;:::i;965:47:11:-;;;;;;;;;;-1:-1:-1;965:47:11;;;;;:::i;:::-;;;;;;;;;;;;;;1964:153;;;;;;;;;;-1:-1:-1;1964:153:11;;;;;:::i;:::-;;:::i;3913:187::-;;;;;;;;;;-1:-1:-1;3913:187:11;;;;;:::i;:::-;;:::i;271:26:13:-;;;;;;;;;;-1:-1:-1;271:26:13;;;;-1:-1:-1;;;271:26:13;;;;;;351:33:11;;;;;;;;;;;;;;;;2052:235:4;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;672:21:11:-;;;;;;;;;;;;;:::i;4106:163::-;;;;;;;;;;-1:-1:-1;4106:163:11;;;;;:::i;:::-;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:12:-;;;;;;;;;;;;;:::i;2227:438:11:-;;;;;;;;;;-1:-1:-1;2227:438:11;;;;;:::i;:::-;;:::i;546:29::-;;;;;;;;;;-1:-1:-1;546:29:11;;;;;;;;;;;1071:48;;;;;;;;;;-1:-1:-1;1071:48:11;;;;;:::i;:::-;;;;;;;;;;;;;;793:100:13;;;;;;;;;;;;;:::i;3507:98:14:-;;;;;;;;;;-1:-1:-1;3507:98:14;;;;;:::i;:::-;;:::i;909:50:11:-;;;;;;;;;;-1:-1:-1;909:50:11;;;;;:::i;:::-;;;;;;;;;;;;;;966:85:12;;;;;;;;;;-1:-1:-1;1038:6:12;;-1:-1:-1;;;;;1038:6:12;966:85;;581:34:11;;;;;;;;;;-1:-1:-1;581:34:11;;;;;;;;;;;4275:169;;;;;;;;;;-1:-1:-1;4275:169:11;;;;;:::i;:::-;;:::i;2511:102:4:-;;;;;;;;;;;;;:::i;3314:107:14:-;;;;;;;;;;-1:-1:-1;3314:107:14;;;;;:::i;:::-;-1:-1:-1;;;;;3396:18:14;3370:7;3396:18;;;:9;:18;;;;;;;3314:107;3649:83:11;;;;;;;;;;-1:-1:-1;3716:9:11;;3649:83;;390:27;;;;;;;;;;;;;;;;4144:290:4;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;1229:30:11:-;;;;;;;;;;-1:-1:-1;1229:30:11;;;;;;;;;;;;;;;:::i;4450:1003::-;;;;;;;;;;-1:-1:-1;4450:1003:11;;;;;:::i;:::-;;:::i;2795:446::-;;;;;;;;;;-1:-1:-1;2795:446:11;;;;;:::i;:::-;;:::i;5365:320:4:-;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;453:27:11:-;;;;;;;;;;;;;;;;3117:103:14;;;;;;;;;;-1:-1:-1;3117:103:14;;;;;:::i;:::-;-1:-1:-1;;;;;3197:16:14;3171:7;3197:16;;;:7;:16;;;;;;;3117:103;2671:118:11;;;;;;;;;;-1:-1:-1;2671:118:11;;;;;:::i;:::-;-1:-1:-1;;;;;2760:22:11;2737:4;2760:22;;;:12;:22;;;;;;;;;2671:118;2938:93:14;;;;;;;;;;-1:-1:-1;3010:14:14;;2938:93;;3738:169:11;;;;;;;;;;-1:-1:-1;3738:169:11;;;;;:::i;:::-;;:::i;4500:162:4:-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;423:24:11;;;;;;;;;;;;;;;;1839:189:12;;;;;;;;;;-1:-1:-1;1839:189:12;;;;;:::i;:::-;;:::i;7637:446:11:-;;;;;;:::i;:::-;;:::i;8389:459::-;;;;;;;;;;;;;:::i;621:45::-;;;;;;;;;;;;;;;;909:222:5;1011:4;-1:-1:-1;;;;;;1034:50:5;;-1:-1:-1;;;1034:50:5;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:5:o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;3955:73;;;;-1:-1:-1;;;3955:73:4;;18792:2:17;3955:73:4;;;18774:21:17;18831:2;18811:18;;;18804:30;18870:34;18850:18;;;18843:62;-1:-1:-1;;;18921:18:17;;;18914:42;18973:19;;3955:73:4;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;20741:2:17;3527:57:4;;;20723:21:17;20780:2;20760:18;;;20753:30;20819:34;20799:18;;;20792:62;-1:-1:-1;;;20870:18:17;;;20863:31;20911:19;;3527:57:4;20713:223:17;3527:57:4;666:10:1;-1:-1:-1;;;;;3616:21:4;;;;:62;;-1:-1:-1;3641:37:4;3658:5;666:10:1;4500:162:4;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;16824:2:17;3595:165:4;;;16806:21:17;16863:2;16843:18;;;16836:30;16902:34;16882:18;;;16875:62;16973:26;16953:18;;;16946:54;17017:19;;3595:165:4;16796:246:17;3595:165:4;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;3799:600:14:-;-1:-1:-1;;;;;3874:16:14;;3893:1;3874:16;;;:7;:16;;;;;;3866:71;;;;-1:-1:-1;;;3866:71:14;;12938:2:17;3866:71:14;;;12920:21:17;12977:2;12957:18;;;12950:30;13016:34;12996:18;;;12989:62;-1:-1:-1;;;13067:18:17;;;13060:36;13113:19;;3866:71:14;12910:228:17;3866:71:14;3948:21;3996:14;;3972:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4090:18:14;;4020:15;4090:18;;;:9;:18;;;;;;;;;4075:12;;4055:7;:16;;;;;;;3948:62;;-1:-1:-1;4020:15:14;;4039:32;;3948:62;4039:32;:::i;:::-;4038:49;;;;:::i;:::-;:70;;;;:::i;:::-;4020:88;-1:-1:-1;4127:12:14;4119:68;;;;-1:-1:-1;;;4119:68:14;;15302:2:17;4119:68:14;;;15284:21:17;15341:2;15321:18;;;15314:30;15380:34;15360:18;;;15353:62;-1:-1:-1;;;15431:18:17;;;15424:41;15482:19;;4119:68:14;15274:233:17;4119:68:14;-1:-1:-1;;;;;4219:18:14;;;;;;:9;:18;;;;;;:28;;4240:7;;4219:28;:::i;:::-;-1:-1:-1;;;;;4198:18:14;;;;;;:9;:18;;;;;:49;4274:14;;:24;;4291:7;;4274:24;:::i;:::-;4257:14;:41;4309:35;4327:7;4336;4309:17;:35::i;:::-;4359:33;;;-1:-1:-1;;;;;7394:32:17;;7376:51;;7458:2;7443:18;;7436:34;;;4359:33:14;;7349:18:17;4359:33:14;;;;;;;3799:600;;;:::o;4724:330:4:-;4913:41;666:10:1;4946:7:4;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;3247:396:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;3320:17:11::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;3320:38:11;;::::1;;::::0;;3373:43:::1;::::0;::::1;::::0;::::1;::::0;3340:18;8418:14:17;8411:22;8393:41;;8381:2;8366:18;;8348:92;3373:43:11::1;;;;;;;;3426:17;:24:::0;;-1:-1:-1;;3426:24:11::1;;;::::0;;3465:29:::1;::::0;-1:-1:-1;8393:41:17;;3465:29:11::1;::::0;8381:2:17;8366:18;3465:29:11::1;;;;;;;3515:1;3504:8;:12:::0;;;3526:8:::1;:30:::0;;-1:-1:-1;;3526:30:11::1;::::0;::::1;::::0;;3571:65:::1;::::0;::::1;::::0;::::1;::::0;3526:30;;3515:1;3571:65:::1;:::i;:::-;;;;;;;;3247:396:::0;:::o;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:5;;10586:2:17;1326:87:5;;;10568:21:17;10625:2;10605:18;;;10598:30;10664:34;10644:18;;;10637:62;-1:-1:-1;;;10715:18:17;;;10708:41;10766:19;;1326:87:5;10558:233:17;1326:87:5;-1:-1:-1;;;;;;1430:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;983:102:13:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;653:6:13::1;::::0;-1:-1:-1;;;653:6:13;::::1;;;645:43;;;::::0;-1:-1:-1;;;645:43:13;;16068:2:17;645:43:13::1;::::0;::::1;16050:21:17::0;16107:2;16087:18;;;16080:30;16146:26;16126:18;;;16119:54;16190:18;;645:43:13::1;16040:174:17::0;645:43:13::1;1040:6:::2;:14:::0;;-1:-1:-1;;;;1040:14:13::2;::::0;;1069:9:::2;::::0;::::2;::::0;1049:5:::2;::::0;1069:9:::2;983:102::o:0;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;8089:294:11:-;8147:13;;;;8139:51;;;;-1:-1:-1;;;8139:51:11;;15714:2:17;8139:51:11;;;15696:21:17;15753:2;15733:18;;;15726:30;15792:27;15772:18;;;15765:55;15837:18;;8139:51:11;15686:175:17;8139:51:11;8221:39;8240:10;8252:7;8221:18;:39::i;:::-;8200:119;;;;-1:-1:-1;;;8200:119:11;;22786:2:17;8200:119:11;;;22768:21:17;22825:2;22805:18;;;22798:30;22864:34;22844:18;;;22837:62;-1:-1:-1;;;22915:18:17;;;22908:31;22956:19;;8200:119:11;22758:223:17;8200:119:11;8329:14;8335:7;8329:5;:14::i;:::-;8375:1;8364:8;;:12;;;;:::i;:::-;8353:8;:23;-1:-1:-1;8089:294:11:o;1717:230:5:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:5;;22373:2:17;1811:95:5;;;22355:21:17;22412:2;22392:18;;;22385:30;22451:34;22431:18;;;22424:62;-1:-1:-1;;;22502:18:17;;;22495:42;22554:19;;1811:95:5;22345:234:17;1811:95:5;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:5;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;1964:153:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;2044:23:11::1;:7;2054:13:::0;;2044:23:::1;:::i;:::-;;2082:28;2096:13;;2082:28;;;;;;;:::i;:::-;;;;;;;;1964:153:::0;;:::o;3913:187::-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;3997:17:11::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;3997:38:11;;::::1;;::::0;;4050:43:::1;::::0;::::1;::::0;::::1;::::0;4017:18;8418:14:17;8411:22;8393:41;;8381:2;8366:18;;8348:92;2052:235:4;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;17660:2:17;2185:73:4;;;17642:21:17;17699:2;17679:18;;;17672:30;17738:34;17718:18;;;17711:62;-1:-1:-1;;;17789:18:17;;;17782:39;17838:19;;2185:73:4;17632:231:17;672:21:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4106:163::-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;4182:13:11::1;:30:::0;;-1:-1:-1;;4182:30:11::1;::::0;::::1;;::::0;;::::1;::::0;;;4227:35:::1;::::0;8393:41:17;;;4227:35:11::1;::::0;8381:2:17;8366:18;4227:35:11::1;8348:92:17::0;1790:205:4;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;17249:2:17;1881:74:4;;;17231:21:17;17288:2;17268:18;;;17261:30;17327:34;17307:18;;;17300:62;-1:-1:-1;;;17378:18:17;;;17371:40;17428:19;;1881:74:4;17221:232:17;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:12:-;1038:6;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2227:438:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;2338:11:11::1;2333:326;2355:23:::0;;::::1;2333:326;;;2453:1;2426:10:::0;;2437:3;2426:15;;::::1;;;-1:-1:-1::0;;;2426:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2426:29:11::1;;;2401:121;;;::::0;-1:-1:-1;;;2401:121:11;;12536:2:17;2401:121:11::1;::::0;::::1;12518:21:17::0;12575:2;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;-1:-1:-1;;;12665:18:17;;;12658:31;12706:19;;2401:121:11::1;12508:223:17::0;2401:121:11::1;2540:12;:29;2553:10;;2564:3;2553:15;;;;;-1:-1:-1::0;;;2553:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2540:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2540:29:11;;::::1;;2536:113;;2630:4;2598:12;:29;2611:10;;2622:3;2611:15;;;;;-1:-1:-1::0;;;2611:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2598:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2598:29:11;:36;;-1:-1:-1;;2598:36:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2536:113:::1;2380:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2333:326;;793:100:13::0;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;451:6:13::1;::::0;-1:-1:-1;;;451:6:13;::::1;;;450:7;442:48;;;;-1:-1:-1::0;;;442:48:13::1;;;;;;;:::i;:::-;851:6:::2;:13:::0;;-1:-1:-1;;;;851:13:13::2;-1:-1:-1::0;;;851:13:13::2;::::0;;879:7:::2;::::0;::::2;::::0;851:13;;879:7:::2;793:100::o:0;3507:98:14:-;3558:7;3584;3592:5;3584:14;;;;;;-1:-1:-1;;;3584:14:14;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3584:14:14;;3507:98;-1:-1:-1;;3507:98:14:o;4275:169:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;4351:27:11::1;:7:::0;4361:17:::1;4351:27;:::i;:::-;4339:9;:39:::0;4393:44:::1;4409:27;:7:::0;4419:17:::1;4409:27;:::i;:::-;4393:44;::::0;24603:25:17;;;24591:2;24576:18;4393:44:11::1;24558:76:17::0;2511:102:4;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;-1:-1:-1;;;;;4246:24:4;;666:10:1;4246:24:4;;4238:62;;;;-1:-1:-1;;;4238:62:4;;13750:2:17;4238:62:4;;;13732:21:17;13789:2;13769:18;;;13762:30;13828:27;13808:18;;;13801:55;13873:18;;4238:62:4;13722:175:17;4238:62:4;666:10:1;4311:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;4379:48;;8393:41:17;;;4311:42:4;;666:10:1;4379:48:4;;8366:18:17;4379:48:4;;;;;;;4144:290;;:::o;4450:1003:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;451:6:13::1;::::0;-1:-1:-1;;;451:6:13;::::1;;;450:7;442:48;;;;-1:-1:-1::0;;;442:48:13::1;;;;;;;:::i;:::-;4623:14:11::2;::::0;4591:8:::2;::::0;:28:::2;::::0;4602:10;;4591:28:::2;:::i;:::-;:46;;4570:127;;;::::0;-1:-1:-1;;;4570:127:11;;16421:2:17;4570:127:11::2;::::0;::::2;16403:21:17::0;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;-1:-1:-1;;;16550:18:17;;;16543:32;16592:19;;4570:127:11::2;16393:224:17::0;4570:127:11::2;4762:13;::::0;4729:9:::2;::::0;:29:::2;::::0;4741:10;;4729:29:::2;:::i;:::-;:46;;4708:126;;;::::0;-1:-1:-1;;;4708:126:11;;10184:2:17;4708:126:11::2;::::0;::::2;10166:21:17::0;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:17;;;10306:31;10354:19;;4708:126:11::2;10156:223:17::0;4708:126:11::2;4845:18;::::0;4873:574:::2;4895:23:::0;;::::2;4873:574;;;4993:1;4966:10:::0;;4977:3;4966:15;;::::2;;;-1:-1:-1::0;;;4966:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4966:29:11::2;;;4941:126;;;::::0;-1:-1:-1;;;4941:126:11;;21966:2:17;4941:126:11::2;::::0;::::2;21948:21:17::0;22005:2;21985:18;;;21978:30;22044:34;22024:18;;;22017:62;-1:-1:-1;;;22095:18:17;;;22088:36;22141:19;;4941:126:11::2;21938:228:17::0;4941:126:11::2;5081:21;:9;978:19:2::0;;996:1;978:19;;;891:123;5081:21:11::2;5129:9;864:14:2::0;5116:32:11::2;;5162:38;5172:10;;5183:3;5172:15;;;;;-1:-1:-1::0;;;5172:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5189:10;5162:9;:38::i;:::-;5246:12;:29;5259:10;;5270:3;5259:15;;;;;-1:-1:-1::0;;;5259:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5246:29:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5246:29:11;;:33:::2;::::0;5278:1:::2;5246:33;:::i;:::-;5214:12;:29;5227:10;;5238:3;5227:15;;;;;-1:-1:-1::0;;;5227:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5214:29:11::2;-1:-1:-1::0;;;;;5214:29:11::2;;;;;;;;;;;;:65;;;;5326:13;:30;5340:10;;5351:3;5340:15;;;;;-1:-1:-1::0;;;5340:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5326:30:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5326:30:11;;:34:::2;::::0;5359:1:::2;5326:34;:::i;:::-;5293:13;:30;5307:10;;5318:3;5307:15;;;;;-1:-1:-1::0;;;5307:15:11::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5293:30:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5293:30:11;:67;5385:8:::2;::::0;:12:::2;::::0;5396:1:::2;5385:12;:::i;:::-;5374:8;:23:::0;5423:9:::2;::::0;:13:::2;::::0;5435:1:::2;5423:13;:::i;:::-;5411:9;:25:::0;4920:5;::::2;::::0;::::2;:::i;:::-;;;;4873:574;;;;500:1:13;4450:1003:11::0;;:::o;2795:446::-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;2911:11:11::1;2906:329;2928:23:::0;;::::1;2906:329;;;3026:1;2999:10:::0;;3010:3;2999:15;;::::1;;;-1:-1:-1::0;;;2999:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2999:29:11::1;;;2974:124;;;::::0;-1:-1:-1;;;2974:124:11;;21143:2:17;2974:124:11::1;::::0;::::1;21125:21:17::0;21182:2;21162:18;;;21155:30;21221:34;21201:18;;;21194:62;-1:-1:-1;;;21272:18:17;;;21265:34;21316:19;;2974:124:11::1;21115:226:17::0;2974:124:11::1;3116:12;:29;3129:10;;3140:3;3129:15;;;;;-1:-1:-1::0;;;3129:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3116:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3116:29:11;;::::1;;:37;;:29:::0;:37:::1;3112:113;;;3205:5;3173:12;:29;3186:10;;3197:3;3186:15;;;;;-1:-1:-1::0;;;3186:15:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3173:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3173:29:11;:37;;-1:-1:-1;;3173:37:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3112:113:::1;2953:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2906:329;;5365:320:4::0;5534:41;666:10:1;5567:7:4;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:4;2777:76;;;;-1:-1:-1;;;2777:76:4;;20325:2:17;2777:76:4;;;20307:21:17;20364:2;20344:18;;;20337:30;20403:34;20383:18;;;20376:62;-1:-1:-1;;;20454:18:17;;;20447:45;20509:19;;2777:76:4;20297:237:17;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;3738:169:11:-;1038:6:12;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;3816:14:11::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3816:32:11;;::::1;;::::0;;3863:37:::1;::::0;::::1;::::0;::::1;::::0;3833:15;8418:14:17;8411:22;8393:41;;8381:2;8366:18;;8348:92;1839:189:12;1038:6;;-1:-1:-1;;;;;1038:6:12;666:10:1;1178:23:12;1170:68;;;;-1:-1:-1;;;1170:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:12;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:12;;11417:2:17;1919:73:12::1;::::0;::::1;11399:21:17::0;11456:2;11436:18;;;11429:30;11495:34;11475:18;;;11468:62;-1:-1:-1;;;11546:18:17;;;11539:36;11592:19;;1919:73:12::1;11389:228:17::0;1919:73:12::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;7637:446:11:-;451:6:13;;-1:-1:-1;;;451:6:13;;;;450:7;442:48;;;;-1:-1:-1;;;442:48:13;;;;;;;:::i;:::-;7717:17:11::1;::::0;::::1;::::0;::::1;;;7713:125;;7759:20;7771:7;7759:11;:20::i;:::-;7713:125;;;7810:17;7819:7;7810:8;:17::i;:::-;7873:14;;7862:7;7851:8;;:18;;;;:::i;:::-;:36;7847:230;;;7903:8;:33:::0;;-1:-1:-1;;7903:33:11::1;7914:22;7903:33:::0;;::::1;::::0;;;7955:111:::1;::::0;::::1;::::0;::::1;::::0;7993:19:::1;::::0;7914:22;7955:111:::1;:::i;8389:459::-:0;8439:7;;;8487:8;;;;:41;;;;;;-1:-1:-1;;;8487:41:11;;;;;;;;;;8483:83;;;-1:-1:-1;8554:1:11;8483:83;8591:22;8579:8;;;;:34;;;;;;-1:-1:-1;;;8579:34:11;;;;;;;;;;8575:76;;;-1:-1:-1;8639:1:11;8575:76;8676:19;8664:8;;;;:31;;;;;;-1:-1:-1;;;8664:31:11;;;;;;;;;;8660:73;;;-1:-1:-1;8721:1:11;8660:73;8758:22;8746:8;;;;:34;;;;;;-1:-1:-1;;;8746:34:11;;;;;;;;;;8742:76;;;-1:-1:-1;8806:1:11;8742:76;8834:7;8389:459;-1:-1:-1;8389:459:11:o;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1688:36:4;763:155:3;11008:171:4;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:0;;14531:2:17;2093:73:0;;;14513:21:17;14570:2;14550:18;;;14543:30;14609:31;14589:18;;;14582:59;14658:18;;2093:73:0;14503:179:17;2093:73:0;2178:12;2196:9;-1:-1:-1;;;;;2196:14:0;2218:6;2196:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:0;;14104:2:17;2239:78:0;;;14086:21:17;14143:2;14123:18;;;14116:30;14182:34;14162:18;;;14155:62;14253:28;14233:18;;;14226:56;14299:19;;2239:78:0;14076:248:17;7440:344:4;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;7549:73;;;;-1:-1:-1;;;7549:73:4;;14889:2:17;7549:73:4;;;14871:21:17;14928:2;14908:18;;;14901:30;14967:34;14947:18;;;14940:62;-1:-1:-1;;;15018:18:17;;;15011:42;15070:19;;7549:73:4;14861:234:17;7549:73:4;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:4:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;19915:2:17;10456:85:4;;;19897:21:17;19954:2;19934:18;;;19927:30;19993:34;19973:18;;;19966:62;-1:-1:-1;;;20044:18:17;;;20037:39;20093:19;;10456:85:4;19887:231:17;10456:85:4;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;13345:2:17;10551:65:4;;;13327:21:17;13384:2;13364:18;;;13357:30;13423:34;13403:18;;;13396:62;-1:-1:-1;;;13474:18:17;;;13467:34;13518:19;;10551:65:4;13317:226:17;10551:65:4;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;9665:348::-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9774:48;9795:5;9810:1;9814:7;9774:20;:48::i;:::-;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:4;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:4;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:4;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:4;;;;;9938:16;;9970:36;9665:348;;:::o;2034:169:12:-;2108:6;;;-1:-1:-1;;;;;2124:17:12;;;-1:-1:-1;;;;;;2124:17:12;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;2123:98:11:-;2175:13;2207:7;2200:14;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:16;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;5459:1175:11;5524:14;;;;;;;:22;;5542:4;5524:22;5516:63;;;;-1:-1:-1;;;5516:63:11;;9827:2:17;5516:63:11;;;9809:21:17;9866:2;9846:18;;;9839:30;9905;9885:18;;;9878:58;9953:18;;5516:63:11;9799:178:17;5516:63:11;5623:10;5610:24;;;;:12;:24;;;;;;;;:32;;:24;:32;5589:107;;;;-1:-1:-1;;;5589:107:11;;9827:2:17;5589:107:11;;;9809:21:17;9866:2;9846:18;;;9839:30;9905;9885:18;;;9878:58;9953:18;;5589:107:11;9799:178:17;5589:107:11;5768:8;;5743:10;5727:27;;;;:15;:27;;;;;;:37;;5757:7;;5727:37;:::i;:::-;:49;;5706:122;;;;-1:-1:-1;;;5706:122:11;;11824:2:17;5706:122:11;;;11806:21:17;11863:2;11843:18;;;11836:30;11902:28;11882:18;;;11875:56;11948:18;;5706:122:11;11796:176:17;5706:122:11;5881:14;;5870:7;5859:8;;:18;;;;:::i;:::-;:36;;5838:111;;;;-1:-1:-1;;;5838:111:11;;23188:2:17;5838:111:11;;;23170:21:17;23227:2;23207:18;;;23200:30;23266;23246:18;;;23239:58;23314:18;;5838:111:11;23160:178:17;5838:111:11;5959:14;5976:10;3716:9;;;3649:83;5976:10;5959:27;-1:-1:-1;6037:9:11;6017:16;6026:7;5959:27;6017:16;:::i;:::-;:29;;5996:116;;;;-1:-1:-1;;;5996:116:11;;;;;;;:::i;:::-;6122:18;;6150:423;6178:7;6172:3;:13;6150:423;;;6208:21;:9;978:19:2;;996:1;978:19;;;891:123;6208:21:11;6256:9;864:14:2;6243:32:11;;6289:33;6299:10;6311;6289:9;:33::i;:::-;6382:10;6366:27;;;;:15;:27;;;;;;:37;;6396:7;;6366:37;:::i;:::-;6352:10;6336:27;;;;:15;:27;;;;;;;;:67;;;;6445:25;;;;:35;;6473:7;;6445:35;:::i;:::-;6431:10;6417:25;;;;:13;:25;;;;;:63;6505:8;;:12;;6516:1;6505:12;:::i;:::-;6494:8;:23;6546:12;;:16;;6561:1;6546:16;:::i;:::-;6531:12;:31;6187:5;;;;:::i;:::-;;;;6150:423;;;-1:-1:-1;6587:40:11;;;24813:25:17;;;24869:2;24854:18;;24847:34;;;6599:10:11;;6587:40;;24786:18:17;6587:40:11;;;;;;;;5459:1175;;;:::o;6640:991::-;6702:17;;;;;;;;:25;;:17;:25;6694:57;;;;-1:-1:-1;;;6694:57:11;;24311:2:17;6694:57:11;;;24293:21:17;24350:2;24330:18;;;24323:30;-1:-1:-1;;;24369:18:17;;;24362:49;24428:18;;6694:57:11;24283:169:17;6694:57:11;6779:1;6769:7;:11;6761:44;;;;-1:-1:-1;;;6761:44:11;;19566:2:17;6761:44:11;;;19548:21:17;19605:2;19585:18;;;19578:30;-1:-1:-1;;;19624:18:17;;;19617:50;19684:18;;6761:44:11;19538:170:17;6761:44:11;6834:8;;6823:7;:19;;6815:64;;;;-1:-1:-1;;;6815:64:11;;18070:2:17;6815:64:11;;;18052:21:17;;;18089:18;;;18082:30;18148:34;18128:18;;;18121:62;18200:18;;6815:64:11;18042:182:17;6815:64:11;6932:14;;6921:7;6910:8;;:18;;;;:::i;:::-;:36;;6889:111;;;;-1:-1:-1;;;6889:111:11;;23188:2:17;6889:111:11;;;23170:21:17;23227:2;23207:18;;;23200:30;23266;23246:18;;;23239:58;23314:18;;6889:111:11;23160:178:17;6889:111:11;7010:14;7027:10;3716:9;;;3649:83;7027:10;7010:27;-1:-1:-1;7088:9:11;7068:16;7077:7;7010:27;7068:16;:::i;:::-;:29;;7047:116;;;;-1:-1:-1;;;7047:116:11;;;;;;;:::i;:::-;7173:18;;7201:372;7229:7;7223:3;:13;7201:372;;;7259:21;:9;978:19:2;;996:1;978:19;;;891:123;7259:21:11;7307:9;864:14:2;7294:32:11;;7340:33;7350:10;7362;7340:9;:33::i;:::-;7427:10;7414:24;;;;:12;:24;;;;;;:34;;7441:7;;7414:34;:::i;:::-;7400:10;7387:24;;;;:12;:24;;;;;;;;:61;;;;7490:25;;;;:35;;7518:7;;7490:35;:::i;:::-;7476:10;7462:25;;;;:13;:25;;;;;:63;7550:8;;:12;;7561:1;7550:12;:::i;:::-;7539:8;:23;7238:5;;;;:::i;:::-;;;;7201:372;;;-1:-1:-1;7587:37:11;;;24813:25:17;;;24869:2;24854:18;;24847:34;;;7596:10:11;;7587:37;;24786:18:17;7587:37:11;24768:119:17;2543:572:5;-1:-1:-1;;;;;2742:18:5;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:5;:4;-1:-1:-1;;;;;2837:10:5;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:5;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:5;:2;-1:-1:-1;;;;;3032:10:5;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;;;;;;:::i;11732:778::-;11882:4;-1:-1:-1;;;;;11902:13:4;;1034:20:0;1080:8;11898:606:4;;11937:72;;-1:-1:-1;;;11937:72:4;;-1:-1:-1;;;;;11937:36:4;;;;;:72;;666:10:1;;11988:4:4;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;4599:970:5:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:5;;;5069:323;;-1:-1:-1;;;;;5139:18:5;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:5;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:5;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:5;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:5;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:5:o;9076:372:4:-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;18431:2:17;9147:61:4;;;18413:21:17;;;18450:18;;;18443:30;18509:34;18489:18;;;18482:62;18561:18;;9147:61:4;18403:182:17;9147:61:4;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;9218:58;;;;-1:-1:-1;;;9218:58:4;;12179:2:17;9218:58:4;;;12161:21:17;12218:2;12198:18;;;12191:30;12257;12237:18;;;12230:58;12305:18;;9218:58:4;12151:178:17;9218:58:4;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:160:17;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;179:257;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;711:398::-;779:6;787;840:2;828:9;819:7;815:23;811:32;808:2;;;861:6;853;846:22;808:2;905:9;892:23;924:31;949:5;924:31;:::i;:::-;974:5;-1:-1:-1;1031:2:17;1016:18;;1003:32;1044:33;1003:32;1044:33;:::i;:::-;1096:7;1086:17;;;798:311;;;;;:::o;1114:466::-;1191:6;1199;1207;1260:2;1248:9;1239:7;1235:23;1231:32;1228:2;;;1281:6;1273;1266:22;1228:2;1325:9;1312:23;1344:31;1369:5;1344:31;:::i;:::-;1394:5;-1:-1:-1;1451:2:17;1436:18;;1423:32;1464:33;1423:32;1464:33;:::i;:::-;1218:362;;1516:7;;-1:-1:-1;;;1570:2:17;1555:18;;;;1542:32;;1218:362::o;1585:1311::-;1680:6;1688;1696;1704;1757:3;1745:9;1736:7;1732:23;1728:33;1725:2;;;1779:6;1771;1764:22;1725:2;1823:9;1810:23;1842:31;1867:5;1842:31;:::i;:::-;1892:5;-1:-1:-1;1949:2:17;1934:18;;1921:32;1962:33;1921:32;1962:33;:::i;:::-;2014:7;-1:-1:-1;2068:2:17;2053:18;;2040:32;;-1:-1:-1;2123:2:17;2108:18;;2095:32;2146:18;2176:14;;;2173:2;;;2208:6;2200;2193:22;2173:2;2251:6;2240:9;2236:22;2226:32;;2296:7;2289:4;2285:2;2281:13;2277:27;2267:2;;2323:6;2315;2308:22;2267:2;2364;2351:16;2386:2;2382;2379:10;2376:2;;;2392:18;;:::i;:::-;2467:2;2461:9;2435:2;2521:13;;-1:-1:-1;;2517:22:17;;;2541:2;2513:31;2509:40;2497:53;;;2565:18;;;2585:22;;;2562:46;2559:2;;;2611:18;;:::i;:::-;2651:10;2647:2;2640:22;2686:2;2678:6;2671:18;2726:7;2721:2;2716;2712;2708:11;2704:20;2701:33;2698:2;;;2752:6;2744;2737:22;2698:2;2813;2808;2804;2800:11;2795:2;2787:6;2783:15;2770:46;2836:15;;;2853:2;2832:24;2825:40;;;;1715:1181;;;;-1:-1:-1;1715:1181:17;;-1:-1:-1;;;;1715:1181:17:o;2901:325::-;2966:6;2974;3027:2;3015:9;3006:7;3002:23;2998:32;2995:2;;;3048:6;3040;3033:22;2995:2;3092:9;3079:23;3111:31;3136:5;3111:31;:::i;:::-;3161:5;-1:-1:-1;3185:35:17;3216:2;3201:18;;3185:35;:::i;:::-;3175:45;;2985:241;;;;;:::o;3231:325::-;3299:6;3307;3360:2;3348:9;3339:7;3335:23;3331:32;3328:2;;;3381:6;3373;3366:22;3328:2;3425:9;3412:23;3444:31;3469:5;3444:31;:::i;:::-;3494:5;3546:2;3531:18;;;;3518:32;;-1:-1:-1;;;3318:238:17:o;3561:665::-;3647:6;3655;3708:2;3696:9;3687:7;3683:23;3679:32;3676:2;;;3729:6;3721;3714:22;3676:2;3774:9;3761:23;3803:18;3844:2;3836:6;3833:14;3830:2;;;3865:6;3857;3850:22;3830:2;3908:6;3897:9;3893:22;3883:32;;3953:7;3946:4;3942:2;3938:13;3934:27;3924:2;;3980:6;3972;3965:22;3924:2;4025;4012:16;4051:2;4043:6;4040:14;4037:2;;;4072:6;4064;4057:22;4037:2;4130:7;4125:2;4115:6;4112:1;4108:14;4104:2;4100:23;4096:32;4093:45;4090:2;;;4156:6;4148;4141:22;4090:2;4192;4184:11;;;;;4214:6;;-1:-1:-1;3666:560:17;;-1:-1:-1;;;;3666:560:17:o;4231:190::-;4287:6;4340:2;4328:9;4319:7;4315:23;4311:32;4308:2;;;4361:6;4353;4346:22;4308:2;4389:26;4405:9;4389:26;:::i;4426:255::-;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:2;;;4558:6;4550;4543:22;4505:2;4602:9;4589:23;4621:30;4645:5;4621:30;:::i;4686:259::-;4755:6;4808:2;4796:9;4787:7;4783:23;4779:32;4776:2;;;4829:6;4821;4814:22;4776:2;4866:9;4860:16;4885:30;4909:5;4885:30;:::i;4950:642::-;5021:6;5029;5082:2;5070:9;5061:7;5057:23;5053:32;5050:2;;;5103:6;5095;5088:22;5050:2;5148:9;5135:23;5177:18;5218:2;5210:6;5207:14;5204:2;;;5239:6;5231;5224:22;5204:2;5282:6;5271:9;5267:22;5257:32;;5327:7;5320:4;5316:2;5312:13;5308:27;5298:2;;5354:6;5346;5339:22;5298:2;5399;5386:16;5425:2;5417:6;5414:14;5411:2;;;5446:6;5438;5431:22;5411:2;5496:7;5491:2;5482:6;5478:2;5474:15;5470:24;5467:37;5464:2;;;5522:6;5514;5507:22;5597:190;5656:6;5709:2;5697:9;5688:7;5684:23;5680:32;5677:2;;;5730:6;5722;5715:22;5677:2;-1:-1:-1;5758:23:17;;5667:120;-1:-1:-1;5667:120:17:o;5792:257::-;5833:3;5871:5;5865:12;5898:6;5893:3;5886:19;5914:63;5970:6;5963:4;5958:3;5954:14;5947:4;5940:5;5936:16;5914:63;:::i;:::-;6031:2;6010:15;-1:-1:-1;;6006:29:17;5997:39;;;;6038:4;5993:50;;5841:208;-1:-1:-1;;5841:208:17:o;6054:242::-;6140:1;6133:5;6130:12;6120:2;;6185:10;6180:3;6176:20;6173:1;6166:31;6220:4;6217:1;6210:15;6248:4;6245:1;6238:15;6120:2;6272:18;;6110:186::o;6301:470::-;6480:3;6518:6;6512:13;6534:53;6580:6;6575:3;6568:4;6560:6;6556:17;6534:53;:::i;:::-;6650:13;;6609:16;;;;6672:57;6650:13;6609:16;6706:4;6694:17;;6672:57;:::i;:::-;6745:20;;6488:283;-1:-1:-1;;;;6488:283:17:o;7481:488::-;-1:-1:-1;;;;;7750:15:17;;;7732:34;;7802:15;;7797:2;7782:18;;7775:43;7849:2;7834:18;;7827:34;;;7897:3;7892:2;7877:18;;7870:31;;;7675:4;;7918:45;;7943:19;;7935:6;7918:45;:::i;:::-;7910:53;7684:285;-1:-1:-1;;;;;;7684:285:17:o;8445:218::-;8596:2;8581:18;;8608:49;8585:9;8639:6;8608:49;:::i;8668:330::-;8864:2;8849:18;;8876:49;8853:9;8907:6;8876:49;:::i;:::-;8934:58;8988:2;8977:9;8973:18;8965:6;8934:58;:::i;9003:393::-;9162:2;9151:9;9144:21;9201:6;9196:2;9185:9;9181:18;9174:34;9258:6;9250;9245:2;9234:9;9230:18;9217:48;9125:4;9285:22;;;9309:2;9281:31;;;9274:45;;;;9380:2;9359:15;;;-1:-1:-1;;9355:29:17;9340:45;9336:54;;9134:262;-1:-1:-1;9134:262:17:o;9401:219::-;9550:2;9539:9;9532:21;9513:4;9570:44;9610:2;9599:9;9595:18;9587:6;9570:44;:::i;10796:414::-;10998:2;10980:21;;;11037:2;11017:18;;;11010:30;11076:34;11071:2;11056:18;;11049:62;-1:-1:-1;;;11142:2:17;11127:18;;11120:48;11200:3;11185:19;;10970:240::o;19003:356::-;19205:2;19187:21;;;19224:18;;;19217:30;19283:34;19278:2;19263:18;;19256:62;19350:2;19335:18;;19177:182::o;21346:413::-;21548:2;21530:21;;;21587:2;21567:18;;;21560:30;21626:34;21621:2;21606:18;;21599:62;-1:-1:-1;;;21692:2:17;21677:18;;21670:47;21749:3;21734:19;;21520:239::o;23343:404::-;23545:2;23527:21;;;23584:2;23564:18;;;23557:30;23623:34;23618:2;23603:18;;23596:62;-1:-1:-1;;;23689:2:17;23674:18;;23667:38;23737:3;23722:19;;23517:230::o;23752:352::-;23954:2;23936:21;;;23993:2;23973:18;;;23966:30;24032;24027:2;24012:18;;24005:58;24095:2;24080:18;;23926:178::o;24892:128::-;24932:3;24963:1;24959:6;24956:1;24953:13;24950:2;;;24969:18;;:::i;:::-;-1:-1:-1;25005:9:17;;24940:80::o;25025:120::-;25065:1;25091;25081:2;;25096:18;;:::i;:::-;-1:-1:-1;25130:9:17;;25071:74::o;25150:168::-;25190:7;25256:1;25252;25248:6;25244:14;25241:1;25238:21;25233:1;25226:9;25219:17;25215:45;25212:2;;;25263:18;;:::i;:::-;-1:-1:-1;25303:9:17;;25202:116::o;25323:125::-;25363:4;25391:1;25388;25385:8;25382:2;;;25396:18;;:::i;:::-;-1:-1:-1;25433:9:17;;25372:76::o;25453:258::-;25525:1;25535:113;25549:6;25546:1;25543:13;25535:113;;;25625:11;;;25619:18;25606:11;;;25599:39;25571:2;25564:10;25535:113;;;25666:6;25663:1;25660:13;25657:2;;;-1:-1:-1;;25701:1:17;25683:16;;25676:27;25506:205::o;25716:380::-;25795:1;25791:12;;;;25838;;;25859:2;;25913:4;25905:6;25901:17;25891:27;;25859:2;25966;25958:6;25955:14;25935:18;25932:38;25929:2;;;26012:10;26007:3;26003:20;26000:1;25993:31;26047:4;26044:1;26037:15;26075:4;26072:1;26065:15;25929:2;;25771:325;;;:::o;26101:135::-;26140:3;-1:-1:-1;;26161:17:17;;26158:2;;;26181:18;;:::i;:::-;-1:-1:-1;26228:1:17;26217:13;;26148:88::o;26241:112::-;26273:1;26299;26289:2;;26304:18;;:::i;:::-;-1:-1:-1;26338:9:17;;26279:74::o;26358:127::-;26419:10;26414:3;26410:20;26407:1;26400:31;26450:4;26447:1;26440:15;26474:4;26471:1;26464:15;26490:127;26551:10;26546:3;26542:20;26539:1;26532:31;26582:4;26579:1;26572:15;26606:4;26603:1;26596:15;26622:127;26683:10;26678:3;26674:20;26671:1;26664:31;26714:4;26711:1;26704:15;26738:4;26735:1;26728:15;26754:131;-1:-1:-1;;;;;26829:31:17;;26819:42;;26809:2;;26875:1;26872;26865:12;26890:131;-1:-1:-1;;;;;;26964:32:17;;26954:43;;26944:2;;27011:1;27008;27001:12
Swarm Source
ipfs://6c63e10928f17eec9a454288852addd505b5c35fd1517e349bf4fa104cdf8871
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.