More Info
Private Name Tags
Latest 25 from a total of 5,709 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Unstake Producer... | 21469991 | 27 days ago | IN | 0 ETH | 0.00058584 | ||||
Unstake Producer... | 21417600 | 34 days ago | IN | 0 ETH | 0.00233712 | ||||
Unstake Producer... | 21393914 | 37 days ago | IN | 0 ETH | 0.00158936 | ||||
Unstake Producer... | 21383884 | 39 days ago | IN | 0 ETH | 0.00096811 | ||||
Unstake Producer... | 21383882 | 39 days ago | IN | 0 ETH | 0.00101831 | ||||
Unstake Producer... | 21383878 | 39 days ago | IN | 0 ETH | 0.00182585 | ||||
Unstake Producer... | 21383204 | 39 days ago | IN | 0 ETH | 0.0015572 | ||||
Unstake Producer... | 21383184 | 39 days ago | IN | 0 ETH | 0.0010101 | ||||
Unstake Producer... | 21106985 | 78 days ago | IN | 0 ETH | 0.00051865 | ||||
Unstake Producer... | 21066395 | 83 days ago | IN | 0 ETH | 0.00062652 | ||||
Unstake Producer... | 21066329 | 83 days ago | IN | 0 ETH | 0.00065376 | ||||
Unstake Producer... | 21066320 | 83 days ago | IN | 0 ETH | 0.00101517 | ||||
Unstake Producer... | 20099951 | 218 days ago | IN | 0 ETH | 0.00024996 | ||||
Unstake Producer... | 19873875 | 250 days ago | IN | 0 ETH | 0.00037636 | ||||
Unstake Producer... | 19873873 | 250 days ago | IN | 0 ETH | 0.00034561 | ||||
Unstake Producer... | 19829874 | 256 days ago | IN | 0 ETH | 0.00026822 | ||||
Unstake Producer... | 19759956 | 266 days ago | IN | 0 ETH | 0.00047809 | ||||
Unstake Producer... | 19759954 | 266 days ago | IN | 0 ETH | 0.0008182 | ||||
Unstake Producer... | 19732392 | 270 days ago | IN | 0 ETH | 0.00108204 | ||||
Unstake Producer... | 19721804 | 271 days ago | IN | 0 ETH | 0.0006165 | ||||
Unstake Producer... | 19721559 | 271 days ago | IN | 0 ETH | 0.00058862 | ||||
Unstake Producer... | 19678198 | 277 days ago | IN | 0 ETH | 0.00066943 | ||||
Unstake Producer... | 19617551 | 286 days ago | IN | 0 ETH | 0.00114943 | ||||
Unstake Producer... | 19617549 | 286 days ago | IN | 0 ETH | 0.00118932 | ||||
Unstake Producer... | 19617547 | 286 days ago | IN | 0 ETH | 0.002255 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
WhiteRabbit
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WhiteRabbitProducerPass.sol"; contract WhiteRabbit is Ownable, ERC1155Holder { using Strings for uint256; using SafeMath for uint256; // The Producer Pass contract used for staking/voting on episodes WhiteRabbitProducerPass private whiteRabbitProducerPass; // The total number of episodes that make up the film uint256 private _numberOfEpisodes; // A mapping from episodeId to whether or not voting is enabled mapping(uint256 => bool) public votingEnabledForEpisode; // The address of the White Rabbit token ($WRAB) address public whiteRabbitTokenAddress; // The initial fixed supply of White Rabbit tokens uint256 public tokenInitialFixedSupply; // The wallet addresses of the two artists creating the film address private _artist1Address; address private _artist2Address; // The percentage of White Rabbit tokens that will go to the artists uint256 public artistTokenAllocationPercentage; // The number of White Rabbit tokens to send to each artist per episode uint256 public artistTokenPerEpisodePerArtist; // A mapping from episodeId to a boolean indicating whether or not // White Rabbit tokens have been transferred the artists yet mapping(uint256 => bool) public hasTransferredTokensToArtistForEpisode; // The percentage of White Rabbit tokens that will go to producers (via Producer Pass staking) uint256 public producersTokenAllocationPercentage; // The number of White Rabbit tokens to send to producers per episode uint256 public producerPassTokenAllocationPerEpisode; // The base number of White Rabbit tokens to allocate to producers per episode uint256 public producerPassTokenBaseAllocationPerEpisode; // The number of White Rabbit tokens to allocate to producers who stake early uint256 public producerPassTokenEarlyStakingBonusAllocationPerEpisode; // The number of White Rabbit tokens to allocate to producers who stake for the winning option uint256 public producerPassTokenWinningBonusAllocationPerEpisode; // The percentage of White Rabbit tokens that will go to the platform team uint256 public teamTokenAllocationPercentage; // Whether or not the team has received its share of White Rabbit tokens bool public teamTokenAllocationDistributed; // Event emitted when a Producer Pass is staked to vote for an episode option event ProducerPassStaked( address indexed account, uint256 episodeId, uint256 voteId, uint256 amount, uint256 tokenAmount ); // Event emitted when a Producer Pass is unstaked after voting is complete event ProducerPassUnstaked( address indexed account, uint256 episodeId, uint256 voteId, uint256 tokenAmount ); // The list of episode IDs (e.g. [1, 2, 3, 4]) uint256[] public episodes; // The voting option IDs by episodeId (e.g. 1 => [1, 2]) mapping(uint256 => uint256[]) private _episodeOptions; // The total vote counts for each episode voting option, agnostic of users // _episodeVotesByOptionId[episodeId][voteOptionId] => number of votes mapping(uint256 => mapping(uint256 => uint256)) private _episodeVotesByOptionId; // A mapping from episodeId to the winning vote option // 0 means no winner has been declared yet mapping(uint256 => uint256) public winningVoteOptionByEpisode; // A mapping of how many Producer Passes have been staked per user per episode per option // e.g. _usersStakedEpisodeVotingOptionsCount[address][episodeId][voteOptionId] => number staked // These values will be updated/decremented when Producer Passes are unstaked mapping(address => mapping(uint256 => mapping(uint256 => uint256))) private _usersStakedEpisodeVotingOptionsCount; // A mapping of the *history* how many Producer Passes have been staked per user per episode per option // e.g. _usersStakedEpisodeVotingHistoryCount[address][episodeId][voteOptionId] => number staked // Note: These values DO NOT change after Producer Passes are unstaked mapping(address => mapping(uint256 => mapping(uint256 => uint256))) private _usersStakedEpisodeVotingHistoryCount; // The base URI for episode metadata string private _episodeBaseURI; // The base URI for episode voting option metadata string private _episodeOptionBaseURI; /** * @dev Initializes the contract by setting up the Producer Pass contract to be used */ constructor(address whiteRabbitProducerPassContract) { whiteRabbitProducerPass = WhiteRabbitProducerPass( whiteRabbitProducerPassContract ); } /** * @dev Sets the Producer Pass contract to be used */ function setWhiteRabbitProducerPassContract( address whiteRabbitProducerPassContract ) external onlyOwner { whiteRabbitProducerPass = WhiteRabbitProducerPass( whiteRabbitProducerPassContract ); } /** * @dev Sets the base URI for episode metadata */ function setEpisodeBaseURI(string memory baseURI) external onlyOwner { _episodeBaseURI = baseURI; } /** * @dev Sets the base URI for episode voting option metadata */ function setEpisodeOptionBaseURI(string memory baseURI) external onlyOwner { _episodeOptionBaseURI = baseURI; } /** * @dev Sets the list of episode IDs (e.g. [1, 2, 3, 4]) * * This will be updated every time a new episode is added. */ function setEpisodes(uint256[] calldata _episodes) external onlyOwner { episodes = _episodes; } /** * @dev Sets the voting option IDs for a given episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function setEpisodeOptions( uint256 episodeId, uint256[] calldata episodeOptionIds ) external onlyOwner { require(episodeId <= episodes.length, "Episode does not exist"); _episodeOptions[episodeId] = episodeOptionIds; } /** * @dev Retrieves the voting option IDs for a given episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function getEpisodeOptions(uint256 episodeId) public view returns (uint256[] memory) { require(episodeId <= episodes.length, "Episode does not exist"); return _episodeOptions[episodeId]; } /** * @dev Retrieves the number of episodes currently available. */ function getCurrentEpisodeCount() external view returns (uint256) { return episodes.length; } /** * @dev Constructs the metadata URI for a given episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function episodeURI(uint256 episodeId) public view virtual returns (string memory) { require(episodeId <= episodes.length, "Episode does not exist"); string memory baseURI = episodeBaseURI(); return bytes(baseURI).length > 0 ? string( abi.encodePacked(baseURI, episodeId.toString(), ".json") ) : ""; } /** * @dev Constructs the metadata URI for a given episode voting option. * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - The episode voting option ID is valid */ function episodeOptionURI(uint256 episodeId, uint256 episodeOptionId) public view virtual returns (string memory) { // TODO: DRY up these requirements? ("Episode does not exist", "Invalid voting option") require(episodeId <= episodes.length, "Episode does not exist"); string memory baseURI = episodeOptionBaseURI(); return bytes(baseURI).length > 0 ? string( abi.encodePacked( _episodeOptionBaseURI, episodeId.toString(), "/", episodeOptionId.toString(), ".json" ) ) : ""; } /** * @dev Getter for the `_episodeBaseURI` */ function episodeBaseURI() internal view virtual returns (string memory) { return _episodeBaseURI; } /** * @dev Getter for the `_episodeOptionBaseURI` */ function episodeOptionBaseURI() internal view virtual returns (string memory) { return _episodeOptionBaseURI; } /** * @dev Retrieves the voting results for a given episode's voting option ID * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - Voting is no longer enabled for the given episode * - Voting has completed and a winning option has been declared */ function episodeVotes(uint256 episodeId, uint256 episodeOptionId) public view virtual returns (uint256) { require(episodeId <= episodes.length, "Episode does not exist"); require(!votingEnabledForEpisode[episodeId], "Voting is still enabled"); require( winningVoteOptionByEpisode[episodeId] > 0, "Voting not finished" ); return _episodeVotesByOptionId[episodeId][episodeOptionId]; } /** * @dev Retrieves the number of Producer Passes that the user has staked * for a given episode and voting option at this point in time. * * Note that this number will change after a user has unstaked. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function userStakedProducerPassCount( uint256 episodeId, uint256 episodeOptionId ) public view virtual returns (uint256) { require(episodeId <= episodes.length, "Episode does not exist"); return _usersStakedEpisodeVotingOptionsCount[msg.sender][episodeId][ episodeOptionId ]; } /** * @dev Retrieves the historical number of Producer Passes that the user * has staked for a given episode and voting option. * * Note that this number will not change as a result of unstaking. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function userStakedProducerPassCountHistory( uint256 episodeId, uint256 episodeOptionId ) public view virtual returns (uint256) { require(episodeId <= episodes.length, "Episode does not exist"); return _usersStakedEpisodeVotingHistoryCount[msg.sender][episodeId][ episodeOptionId ]; } /** * @dev Stakes Producer Passes for the given episode's voting option ID, * with the ability to specify an `amount`. Staking is used to vote for the option * that the user would like to see producers for the next episode. * * Emits a `ProducerPassStaked` event indicating that the staking was successful, * including the total number of White Rabbit tokens allocated as a result. * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - Voting is enabled for the given episode * - The user is attempting to stake more than zero Producer Passes * - The user has enough Producer Passes to stake * - The episode voting option is valid * - A winning option hasn't been declared yet */ function stakeProducerPass( uint256 episodeId, uint256 voteOptionId, uint256 amount ) public { require(episodeId <= episodes.length, "Episode does not exist"); require(votingEnabledForEpisode[episodeId], "Voting not enabled"); require(amount > 0, "Cannot stake 0"); require( whiteRabbitProducerPass.balanceOf(msg.sender, episodeId) >= amount, "Insufficient pass balance" ); uint256[] memory votingOptionsForThisEpisode = _episodeOptions[ episodeId ]; // vote options should be [1, 2], ID <= length require( votingOptionsForThisEpisode.length >= voteOptionId, "Invalid voting option" ); uint256 winningVoteOptionId = winningVoteOptionByEpisode[episodeId]; // rely on winningVoteOptionId to determine that this episode is valid for voting on require(winningVoteOptionId == 0, "Winner already declared"); // user's vote count for selected episode & option uint256 userCurrentVoteCount = _usersStakedEpisodeVotingOptionsCount[ msg.sender ][episodeId][voteOptionId]; // Get total vote count of this option user is voting/staking for uint256 currentTotalVoteCount = _episodeVotesByOptionId[episodeId][ voteOptionId ]; // Get total vote count from every option of this episode for bonding curve calculation uint256 totalVotesForEpisode = 0; for (uint256 i = 0; i < votingOptionsForThisEpisode.length; i++) { uint256 currentVotingOptionId = votingOptionsForThisEpisode[i]; totalVotesForEpisode += _episodeVotesByOptionId[episodeId][ currentVotingOptionId ]; } // calculate token rewards here uint256 tokensAllocated = getTokenAllocationForUserBeforeStaking( episodeId, amount ); uint256 userNewVoteCount = userCurrentVoteCount + amount; _usersStakedEpisodeVotingOptionsCount[msg.sender][episodeId][ voteOptionId ] = userNewVoteCount; _usersStakedEpisodeVotingHistoryCount[msg.sender][episodeId][ voteOptionId ] = userNewVoteCount; _episodeVotesByOptionId[episodeId][voteOptionId] = currentTotalVoteCount + amount; // Take custody of producer passes from user whiteRabbitProducerPass.safeTransferFrom( msg.sender, address(this), episodeId, amount, "" ); // Distribute wr tokens to user IERC20(whiteRabbitTokenAddress).transfer(msg.sender, tokensAllocated); emit ProducerPassStaked( msg.sender, episodeId, voteOptionId, amount, tokensAllocated ); } /** * @dev Unstakes Producer Passes for the given episode's voting option ID and * sends White Rabbit tokens to the user's wallet if they staked for the winning side. * * * Emits a `ProducerPassUnstaked` event indicating that the unstaking was successful, * including the total number of White Rabbit tokens allocated as a result. * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - Voting is not enabled for the given episode * - The episode voting option is valid * - A winning option has been declared */ function unstakeProducerPasses(uint256 episodeId, uint256 voteOptionId) public { require(!votingEnabledForEpisode[episodeId], "Voting is still enabled"); uint256 stakedProducerPassCount = _usersStakedEpisodeVotingOptionsCount[ msg.sender ][episodeId][voteOptionId]; require(stakedProducerPassCount > 0, "No producer passes staked"); uint256 winningBonus = getUserWinningBonus(episodeId, voteOptionId) * stakedProducerPassCount; _usersStakedEpisodeVotingOptionsCount[msg.sender][episodeId][ voteOptionId ] = 0; if (winningBonus > 0) { IERC20(whiteRabbitTokenAddress).transfer(msg.sender, winningBonus); } whiteRabbitProducerPass.safeTransferFrom( address(this), msg.sender, episodeId, stakedProducerPassCount, "" ); emit ProducerPassUnstaked( msg.sender, episodeId, voteOptionId, winningBonus ); } /** * @dev Calculates the number of White Rabbit tokens to award the user for unstaking * their Producer Passes for a given episode's voting option ID. * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - Voting is not enabled for the given episode * - The episode voting option is valid * - A winning option has been declared */ function getUserWinningBonus(uint256 episodeId, uint256 episodeOptionId) public view returns (uint256) { uint256 winningVoteOptionId = winningVoteOptionByEpisode[episodeId]; require(winningVoteOptionId > 0, "Voting is not finished"); require(!votingEnabledForEpisode[episodeId], "Voting is still enabled"); bool isWinningOption = winningVoteOptionId == episodeOptionId; uint256 numberOfWinningVotes = _episodeVotesByOptionId[episodeId][ episodeOptionId ]; uint256 winningBonus = 0; if (isWinningOption && numberOfWinningVotes > 0) { winningBonus = producerPassTokenWinningBonusAllocationPerEpisode / numberOfWinningVotes; } return winningBonus; } /** * @dev This method is only for the owner since we want to hide the voting results from the public * until after voting has ended. Users can verify the veracity of this via the `episodeVotes` method * which can be called publicly after voting has finished for an episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function getTotalVotesForEpisode(uint256 episodeId) external view onlyOwner returns (uint256[] memory) { uint256[] memory votingOptionsForThisEpisode = _episodeOptions[ episodeId ]; uint256[] memory totalVotes = new uint256[]( votingOptionsForThisEpisode.length ); for (uint256 i = 0; i < votingOptionsForThisEpisode.length; i++) { uint256 currentVotingOptionId = votingOptionsForThisEpisode[i]; uint256 votesForEpisode = _episodeVotesByOptionId[episodeId][ currentVotingOptionId ]; totalVotes[i] = votesForEpisode; } return totalVotes; } /** * @dev Owner method to toggle the voting state of a given episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` * - The voting state is different than the current state * - A winning option has not yet been declared */ function setVotingEnabledForEpisode(uint256 episodeId, bool enabled) public onlyOwner { require(episodeId <= episodes.length, "Episode does not exist"); require( votingEnabledForEpisode[episodeId] != enabled, "Voting state unchanged" ); // if winner already set, don't allow re-opening of voting if (enabled) { require( winningVoteOptionByEpisode[episodeId] == 0, "Winner for episode already set" ); } votingEnabledForEpisode[episodeId] = enabled; } /** * @dev Sets up the distribution parameters for White Rabbit (WRAB) tokens. * * - We will create fractionalized NFT basket first, which will represent the finished film NFT * - Tokens will be stored on platform and distributed to artists and producers as the film progresses * - Artist distribution happens when new episodes are uploaded * - Producer distribution happens when Producer Passes are staked and unstaked (with a bonus for winning the vote) * * Requirements: * * - The allocation percentages do not exceed 100% */ function startWhiteRabbitShowWithParams( address tokenAddress, address artist1Address, address artist2Address, uint256 numberOfEpisodes, uint256 producersAllocationPercentage, uint256 artistAllocationPercentage, uint256 teamAllocationPercentage ) external onlyOwner { require( (producersAllocationPercentage + artistAllocationPercentage + teamAllocationPercentage) <= 100, "Total percentage exceeds 100" ); whiteRabbitTokenAddress = tokenAddress; tokenInitialFixedSupply = IERC20(whiteRabbitTokenAddress).totalSupply(); _artist1Address = artist1Address; _artist2Address = artist2Address; _numberOfEpisodes = numberOfEpisodes; producersTokenAllocationPercentage = producersAllocationPercentage; artistTokenAllocationPercentage = artistAllocationPercentage; teamTokenAllocationPercentage = teamAllocationPercentage; // If total supply is 1000000 and pct is 40 => (1000000 * 40) / (7 * 100 * 2) => 28571 artistTokenPerEpisodePerArtist = (tokenInitialFixedSupply * artistTokenAllocationPercentage) / (_numberOfEpisodes * 100 * 2); // 2 for 2 artists // If total supply is 1000000 and pct is 40 => (1000000 * 40) / (7 * 100) => 57142 producerPassTokenAllocationPerEpisode = (tokenInitialFixedSupply * producersTokenAllocationPercentage) / (_numberOfEpisodes * 100); } /** * @dev Sets the White Rabbit (WRAB) token distrubution for producers. * This distribution is broken into 3 categories: * - Base allocation (every Producer Pass gets the same) * - Early staking bonus (bonding curve distribution where earlier stakers are rewarded more) * - Winning bonus (extra pot split among winning voters) * * Requirements: * * - The allocation percentages do not exceed 100% */ function setProducerPassWhiteRabbitTokensAllocationParameters( uint256 earlyStakingBonus, uint256 winningVoteBonus ) external onlyOwner { require( (earlyStakingBonus + winningVoteBonus) <= 100, "Total percentage exceeds 100" ); uint256 basePercentage = 100 - earlyStakingBonus - winningVoteBonus; producerPassTokenBaseAllocationPerEpisode = (producerPassTokenAllocationPerEpisode * basePercentage) / 100; producerPassTokenEarlyStakingBonusAllocationPerEpisode = (producerPassTokenAllocationPerEpisode * earlyStakingBonus) / 100; producerPassTokenWinningBonusAllocationPerEpisode = (producerPassTokenAllocationPerEpisode * winningVoteBonus) / 100; } /** * @dev Calculates the number of White Rabbit tokens the user would receive if the * provided `amount` of Producer Passes is staked for the given episode. * * Requirements: * * - The provided episode ID exists in our list of `episodes` */ function getTokenAllocationForUserBeforeStaking( uint256 episodeId, uint256 amount ) public view returns (uint256) { ProducerPass memory pass = whiteRabbitProducerPass .getEpisodeToProducerPass(episodeId); uint256 maxSupply = pass.maxSupply; uint256 basePerPass = SafeMath.div( producerPassTokenBaseAllocationPerEpisode, maxSupply ); // Get total vote count from every option of this episode for bonding curve calculation uint256[] memory votingOptionsForThisEpisode = _episodeOptions[ episodeId ]; uint256 totalVotesForEpisode = 0; for (uint256 i = 0; i < votingOptionsForThisEpisode.length; i++) { uint256 currentVotingOptionId = votingOptionsForThisEpisode[i]; totalVotesForEpisode += _episodeVotesByOptionId[episodeId][ currentVotingOptionId ]; } // Below calculates number of tokens user will receive if staked // using a linear bonding curve where early stakers get more // Y = aX (where X = number of stakers, a = Slope, Y = tokens each staker receives) uint256 maxBonusY = 1000 * ((producerPassTokenEarlyStakingBonusAllocationPerEpisode * 2) / maxSupply); uint256 slope = SafeMath.div(maxBonusY, maxSupply); uint256 y1 = (slope * (maxSupply - totalVotesForEpisode)); uint256 y2 = (slope * (maxSupply - totalVotesForEpisode - amount)); uint256 earlyStakingBonus = (amount * (y1 + y2)) / 2; return basePerPass * amount + earlyStakingBonus / 1000; } function endVotingForEpisode(uint256 episodeId) external onlyOwner { uint256[] memory votingOptionsForThisEpisode = _episodeOptions[ episodeId ]; uint256 winningOptionId = 0; uint256 totalVotesForWinningOption = 0; for (uint256 i = 0; i < votingOptionsForThisEpisode.length; i++) { uint256 currentOptionId = votingOptionsForThisEpisode[i]; uint256 votesForEpisode = _episodeVotesByOptionId[episodeId][ currentOptionId ]; if (votesForEpisode >= totalVotesForWinningOption) { winningOptionId = currentOptionId; totalVotesForWinningOption = votesForEpisode; } } setVotingEnabledForEpisode(episodeId, false); winningVoteOptionByEpisode[episodeId] = winningOptionId; } /** * @dev Manually sets the winning voting option for a given episode. * Only call this method to break a tie among voting options for an episode. * * Requirements: * * - This should only be called for ties */ function endVotingForEpisodeOverride( uint256 episodeId, uint256 winningOptionId ) external onlyOwner { setVotingEnabledForEpisode(episodeId, false); winningVoteOptionByEpisode[episodeId] = winningOptionId; } /** * Token distribution for artists and team */ /** * @dev Sends the artists their allocation of White Rabbit tokens after an episode is launched. * * Requirements: * * - The artists have not yet received their tokens for the given episode */ function sendArtistTokensForEpisode(uint256 episodeId) external onlyOwner { require( !hasTransferredTokensToArtistForEpisode[episodeId], "Artist tokens distributed" ); hasTransferredTokensToArtistForEpisode[episodeId] = true; IERC20(whiteRabbitTokenAddress).transfer( _artist1Address, artistTokenPerEpisodePerArtist ); IERC20(whiteRabbitTokenAddress).transfer( _artist2Address, artistTokenPerEpisodePerArtist ); } /** * @dev Transfers White Rabbit tokens to the team based on the `teamTokenAllocationPercentage` * * Requirements: * * - The tokens have not yet been distributed to the team */ function withdrawTokensForTeamAllocation(address[] calldata teamAddresses) external onlyOwner { require(!teamTokenAllocationDistributed, "Team tokens distributed"); uint256 teamBalancePerMember = (teamTokenAllocationPercentage * tokenInitialFixedSupply) / (100 * teamAddresses.length); for (uint256 i = 0; i < teamAddresses.length; i++) { IERC20(whiteRabbitTokenAddress).transfer( teamAddresses[i], teamBalancePerMember ); } teamTokenAllocationDistributed = true; } /** * @dev Transfers White Rabbit tokens to the team based on the platform allocation * * Requirements: * * - All Episodes finished * - Voting completed */ function withdrawPlatformReserveTokens() external onlyOwner { require(episodes.length == _numberOfEpisodes, "Show not ended"); require( !votingEnabledForEpisode[_numberOfEpisodes], "Last episode still voting" ); uint256 leftOverBalance = IERC20(whiteRabbitTokenAddress).balanceOf( address(this) ); IERC20(whiteRabbitTokenAddress).transfer(msg.sender, leftOverBalance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.0; import "./ERC1155Receiver.sol"; /** * @dev _Available since v3.1._ */ contract ERC1155Holder is ERC1155Receiver { function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; struct ProducerPass { uint256 price; uint256 episodeId; uint256 maxSupply; uint256 maxPerWallet; uint256 openMintTimestamp; // unix timestamp in seconds bytes32 merkleRoot; } contract WhiteRabbitProducerPass is ERC1155, ERC1155Supply, Ownable { using Strings for uint256; // The name of the token ("White Rabbit Producer Pass") string public name; // The token symbol ("WRPP") string public symbol; // The wallet addresses of the two artists creating the film address payable private artistAddress1; address payable private artistAddress2; // The wallet addresses of the three developers managing the film address payable private devAddress1; address payable private devAddress2; address payable private devAddress3; // The royalty percentages for the artists and developers uint256 private constant ARTIST_ROYALTY_PERCENTAGE = 60; uint256 private constant DEV_ROYALTY_PERCENTAGE = 40; // A mapping of the number of Producer Passes minted per episodeId per user // userPassesMintedPerTokenId[msg.sender][episodeId] => number of minted passes mapping(address => mapping(uint256 => uint256)) private userPassesMintedPerTokenId; // A mapping from episodeId to its Producer Pass mapping(uint256 => ProducerPass) private episodeToProducerPass; // Event emitted when a Producer Pass is bought event ProducerPassBought( uint256 episodeId, address indexed account, uint256 amount ); /** * @dev Initializes the contract by setting the name and the token symbol */ constructor(string memory baseURI) ERC1155(baseURI) { name = "White Rabbit Producer Pass"; symbol = "WRPP"; } /** * @dev Checks if the provided Merkle Proof is valid for the given root hash. */ function isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) internal view returns (bool) { return MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ); } /** * @dev Retrieves the Producer Pass for a given episode. */ function getEpisodeToProducerPass(uint256 episodeId) external view returns (ProducerPass memory) { return episodeToProducerPass[episodeId]; } /** * @dev Contracts the metadata URI for the Producer Pass of the given episodeId. * * Requirements: * * - The Producer Pass exists for the given episode */ function uri(uint256 episodeId) public view override returns (string memory) { require( episodeToProducerPass[episodeId].episodeId != 0, "Invalid episode" ); return string( abi.encodePacked( super.uri(episodeId), episodeId.toString(), ".json" ) ); } /** * Owner-only methods */ /** * @dev Sets the base URI for the Producer Pass metadata. */ function setBaseURI(string memory baseURI) external onlyOwner { _setURI(baseURI); } /** * @dev Sets the parameters on the Producer Pass struct for the given episode. */ function setProducerPass( uint256 price, uint256 episodeId, uint256 maxSupply, uint256 maxPerWallet, uint256 openMintTimestamp, bytes32 merkleRoot ) external onlyOwner { episodeToProducerPass[episodeId] = ProducerPass( price, episodeId, maxSupply, maxPerWallet, openMintTimestamp, merkleRoot ); } /** * @dev Withdraws the balance and distributes it to the artists and developers * based on the `ARTIST_ROYALTY_PERCENTAGE` and `DEV_ROYALTY_PERCENTAGE`. */ function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 artistBalance = (balance * ARTIST_ROYALTY_PERCENTAGE) / 100; uint256 balancePerArtist = artistBalance / 2; uint256 devBalance = (balance * DEV_ROYALTY_PERCENTAGE) / 100; uint256 balancePerDev = devBalance / 3; bool success; // Transfer artist balances (success, ) = artistAddress1.call{value: balancePerArtist}(""); require(success, "Withdraw unsuccessful"); (success, ) = artistAddress2.call{value: balancePerArtist}(""); require(success, "Withdraw unsuccessful"); // Transfer dev balances (success, ) = devAddress1.call{value: balancePerDev}(""); require(success, "Withdraw unsuccessful"); (success, ) = devAddress2.call{value: balancePerDev}(""); require(success, "Withdraw unsuccessful"); (success, ) = devAddress3.call{value: balancePerDev}(""); require(success, "Withdraw unsuccessful"); } /** * @dev Sets the royalty addresses for the two artists and three developers. */ function setRoyaltyAddresses( address _a1, address _a2, address _d1, address _d2, address _d3 ) external onlyOwner { artistAddress1 = payable(_a1); artistAddress2 = payable(_a2); devAddress1 = payable(_d1); devAddress2 = payable(_d2); devAddress3 = payable(_d3); } /** * @dev Creates a reserve of Producer Passes to set aside for gifting. * * Requirements: * * - There are enough Producer Passes to mint for the given episode * - The supply for the given episode does not exceed the maxSupply of the Producer Pass */ function reserveProducerPassesForGifting( uint256 episodeId, uint256 amountEachAddress, address[] calldata addresses ) public onlyOwner { ProducerPass memory pass = episodeToProducerPass[episodeId]; require(amountEachAddress > 0, "Amount cannot be 0"); require(totalSupply(episodeId) < pass.maxSupply, "No passes to mint"); require( totalSupply(episodeId) + amountEachAddress * addresses.length <= pass.maxSupply, "Cannot mint that many" ); require(addresses.length > 0, "Need addresses"); for (uint256 i = 0; i < addresses.length; i++) { address add = addresses[i]; _mint(add, episodeId, amountEachAddress, ""); } } /** * @dev Mints a set number of Producer Passes for a given episode. * * Emits a `ProducerPassBought` event indicating the Producer Pass was minted successfully. * * Requirements: * * - The current time is within the minting window for the given episode * - There are Producer Passes available to mint for the given episode * - The user is not trying to mint more than the maxSupply * - The user is not trying to mint more than the maxPerWallet * - The user has enough ETH for the transaction */ function mintProducerPass(uint256 episodeId, uint256 amount) external payable { ProducerPass memory pass = episodeToProducerPass[episodeId]; require( block.timestamp >= pass.openMintTimestamp, "Mint is not available" ); require(totalSupply(episodeId) < pass.maxSupply, "Sold out"); require( totalSupply(episodeId) + amount <= pass.maxSupply, "Cannot mint that many" ); uint256 totalMintedPasses = userPassesMintedPerTokenId[msg.sender][ episodeId ]; require( totalMintedPasses + amount <= pass.maxPerWallet, "Exceeding maximum per wallet" ); require(msg.value == pass.price * amount, "Not enough eth"); userPassesMintedPerTokenId[msg.sender][episodeId] = totalMintedPasses + amount; _mint(msg.sender, episodeId, amount, ""); emit ProducerPassBought(episodeId, msg.sender, amount); } /** * @dev For those on with early access (on the whitelist), * mints a set number of Producer Passes for a given episode. * * Emits a `ProducerPassBought` event indicating the Producer Pass was minted successfully. * * Requirements: * * - Provides a valid Merkle proof, indicating the user is on the whitelist * - There are Producer Passes available to mint for the given episode * - The user is not trying to mint more than the maxSupply * - The user is not trying to mint more than the maxPerWallet * - The user has enough ETH for the transaction */ function earlyMintProducerPass( uint256 episodeId, uint256 amount, bytes32[] calldata merkleProof ) external payable { ProducerPass memory pass = episodeToProducerPass[episodeId]; require( isValidMerkleProof(merkleProof, pass.merkleRoot), "Not authorized to mint" ); require(totalSupply(episodeId) < pass.maxSupply, "Sold out"); require( totalSupply(episodeId) + amount <= pass.maxSupply, "Cannot mint that many" ); uint256 totalMintedPasses = userPassesMintedPerTokenId[msg.sender][ episodeId ]; require( totalMintedPasses + amount <= pass.maxPerWallet, "Exceeding maximum per wallet" ); require(msg.value == pass.price * amount, "Not enough eth"); userPassesMintedPerTokenId[msg.sender][episodeId] = totalMintedPasses + amount; _mint(msg.sender, episodeId, amount, ""); emit ProducerPassBought(episodeId, msg.sender, amount); } /** * @dev Retrieves the number of Producer Passes a user has minted by episodeId. */ function userPassesMintedByEpisodeId(uint256 episodeId) external view returns (uint256) { return userPassesMintedPerTokenId[msg.sender][episodeId]; } /** * @dev Boilerplate override for `_beforeTokenTransfer` */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol) pragma solidity ^0.8.0; import "../IERC1155Receiver.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev _Available since v3.1._ */ abstract contract ERC1155Receiver is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"whiteRabbitProducerPassContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"episodeId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"ProducerPassStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"episodeId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"ProducerPassUnstaked","type":"event"},{"inputs":[],"name":"artistTokenAllocationPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistTokenPerEpisodePerArtist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"}],"name":"endVotingForEpisode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"winningOptionId","type":"uint256"}],"name":"endVotingForEpisodeOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"episodeOptionId","type":"uint256"}],"name":"episodeOptionURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"}],"name":"episodeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"episodeOptionId","type":"uint256"}],"name":"episodeVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"episodes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpisodeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"}],"name":"getEpisodeOptions","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getTokenAllocationForUserBeforeStaking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"}],"name":"getTotalVotesForEpisode","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"episodeOptionId","type":"uint256"}],"name":"getUserWinningBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasTransferredTokensToArtistForEpisode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"producerPassTokenAllocationPerEpisode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"producerPassTokenBaseAllocationPerEpisode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"producerPassTokenEarlyStakingBonusAllocationPerEpisode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"producerPassTokenWinningBonusAllocationPerEpisode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"producersTokenAllocationPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"}],"name":"sendArtistTokensForEpisode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setEpisodeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setEpisodeOptionBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256[]","name":"episodeOptionIds","type":"uint256[]"}],"name":"setEpisodeOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_episodes","type":"uint256[]"}],"name":"setEpisodes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"earlyStakingBonus","type":"uint256"},{"internalType":"uint256","name":"winningVoteBonus","type":"uint256"}],"name":"setProducerPassWhiteRabbitTokensAllocationParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setVotingEnabledForEpisode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whiteRabbitProducerPassContract","type":"address"}],"name":"setWhiteRabbitProducerPassContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"voteOptionId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeProducerPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"artist1Address","type":"address"},{"internalType":"address","name":"artist2Address","type":"address"},{"internalType":"uint256","name":"numberOfEpisodes","type":"uint256"},{"internalType":"uint256","name":"producersAllocationPercentage","type":"uint256"},{"internalType":"uint256","name":"artistAllocationPercentage","type":"uint256"},{"internalType":"uint256","name":"teamAllocationPercentage","type":"uint256"}],"name":"startWhiteRabbitShowWithParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTokenAllocationDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTokenAllocationPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInitialFixedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"voteOptionId","type":"uint256"}],"name":"unstakeProducerPasses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"episodeOptionId","type":"uint256"}],"name":"userStakedProducerPassCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"episodeId","type":"uint256"},{"internalType":"uint256","name":"episodeOptionId","type":"uint256"}],"name":"userStakedProducerPassCountHistory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"votingEnabledForEpisode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteRabbitTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winningVoteOptionByEpisode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawPlatformReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"teamAddresses","type":"address[]"}],"name":"withdrawTokensForTeamAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200539738038062005397833981810160405281019062000037919062000182565b620000576200004b6200009f60201b60201c565b620000a760201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001fc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200017c81620001e2565b92915050565b6000602082840312156200019557600080fd5b6000620001a5848285016200016b565b91505092915050565b6000620001bb82620001c2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620001ed81620001ae565b8114620001f957600080fd5b50565b61518b806200020c6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c8063a11d5fb51161015c578063c89089f3116100ce578063ebfd4f6e11610087578063ebfd4f6e146107e7578063ecf6f87b14610805578063f0c0120f14610835578063f23a6e6114610865578063f2fde38b14610895578063fadd0bd6146108b15761028a565b8063c89089f314610737578063cc4e737014610755578063e0bbb21814610771578063ea2657bf1461078f578063eb2f88b8146107ab578063eba8a3ca146107c95761028a565b8063bbd5072411610120578063bbd5072414610665578063bc197c8114610681578063bc873a9e146106b1578063bea8d7b7146106e1578063bfa04e0d146106fd578063c51cb1711461071b5761028a565b8063a11d5fb5146105af578063a76831de146105df578063add4a7a3146105fd578063b136f71c14610619578063b4ae013d146106355761028a565b80635a59c38e1161020057806386f328a9116101b957806386f328a9146104c757806389e0ff72146104f75780638da5cb5b14610515578063926af1fa146105335780639485cf7f1461056357806397de1e33146105935761028a565b80635a59c38e146104195780635c351244146104355780636a40092c14610453578063715018a6146104835780637b0720261461048d5780637bf43e4b146104ab5761028a565b80631c4203fe116102525780631c4203fe146103575780631e9fab101461038757806328d8077a146103a35780632c3bb82a146103ad57806333f56262146103cb5780634c47d227146103e95761028a565b806301ffc9a71461028f57806304af8445146102bf57806309717b41146102db57806310d2b3601461030b5780631131a8ac14610327575b600080fd5b6102a960048036038101906102a49190613ea0565b6108cd565b6040516102b69190614902565b60405180910390f35b6102d960048036038101906102d49190613fdd565b610947565b005b6102f560048036038101906102f09190613f33565b610afe565b6040516103029190614bba565b60405180910390f35b61032560048036038101906103209190613e32565b610b16565b005b610341600480360381019061033c9190614019565b610ba8565b60405161034e9190614bba565b60405180910390f35b610371600480360381019061036c9190613f33565b610c5c565b60405161037e9190614902565b60405180910390f35b6103a1600480360381019061039c9190613bd8565b610c7c565b005b6103ab610d3c565b005b6103b5610fc6565b6040516103c29190614bba565b60405180910390f35b6103d3610fcc565b6040516103e09190614bba565b60405180910390f35b61040360048036038101906103fe9190614019565b610fd2565b6040516104109190614938565b60405180910390f35b610433600480360381019061042e9190613ded565b611085565b005b61043d6112be565b60405161044a9190614bba565b60405180910390f35b61046d60048036038101906104689190613f33565b6112c4565b60405161047a91906148e0565b60405180910390f35b61048b611377565b005b6104956113ff565b6040516104a29190614bba565b60405180910390f35b6104c560048036038101906104c09190614019565b61140c565b005b6104e160048036038101906104dc9190613f33565b6114af565b6040516104ee9190614bba565b60405180910390f35b6104ff6114d3565b60405161050c9190614bba565b60405180910390f35b61051d6114d9565b60405161052a9190614844565b60405180910390f35b61054d60048036038101906105489190614019565b611502565b60405161055a9190614bba565b60405180910390f35b61057d60048036038101906105789190613f33565b6115b6565b60405161058a9190614938565b60405180910390f35b6105ad60048036038101906105a89190614019565b61165d565b005b6105c960048036038101906105c49190614019565b61198c565b6040516105d69190614bba565b60405180910390f35b6105e7611c2b565b6040516105f49190614bba565b60405180910390f35b61061760048036038101906106129190613f33565b611c31565b005b610633600480360381019061062e9190614019565b611ddd565b005b61064f600480360381019061064a9190614019565b611f29565b60405161065c9190614bba565b60405180910390f35b61067f600480360381019061067a9190613ec9565b612057565b005b61069b60048036038101906106969190613c9f565b6120ed565b6040516106a8919061491d565b60405180910390f35b6106cb60048036038101906106c69190613f33565b612102565b6040516106d891906148e0565b60405180910390f35b6106fb60048036038101906106f69190613f33565b61233a565b005b6107056125ee565b6040516107129190614bba565b60405180910390f35b61073560048036038101906107309190613ec9565b6125f4565b005b61073f61268a565b60405161074c9190614bba565b60405180910390f35b61076f600480360381019061076a9190614055565b612690565b005b610779612d57565b6040516107869190614902565b60405180910390f35b6107a960048036038101906107a49190613c01565b612d6a565b005b6107b3613038565b6040516107c09190614844565b60405180910390f35b6107d161305e565b6040516107de9190614bba565b60405180910390f35b6107ef613064565b6040516107fc9190614bba565b60405180910390f35b61081f600480360381019061081a9190613f33565b61306a565b60405161082c9190614902565b60405180910390f35b61084f600480360381019061084a9190614019565b61308a565b60405161085c9190614bba565b60405180910390f35b61087f600480360381019061087a9190613d5e565b6131a9565b60405161088c919061491d565b60405180910390f35b6108af60048036038101906108aa9190613bd8565b6131be565b005b6108cb60048036038101906108c69190613f85565b6132b6565b005b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610940575061093f826133a2565b5b9050919050565b61094f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661096d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90614afa565b60405180910390fd5b601280549050821115610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290614a1a565b60405180910390fd5b8015156003600084815260200190815260200160002060009054906101000a900460ff1615151415610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a69906149da565b60405180910390fd5b8015610acf576000601560008481526020019081526020016000205414610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590614ada565b60405180910390fd5b5b806003600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60156020528060005260406000206000915090505481565b610b1e61340c565b73ffffffffffffffffffffffffffffffffffffffff16610b3c6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990614afa565b60405180910390fd5b818160129190610ba39291906137bf565b505050565b6000601280549050831115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614a1a565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610c8461340c565b73ffffffffffffffffffffffffffffffffffffffff16610ca26114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90614afa565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4461340c565b73ffffffffffffffffffffffffffffffffffffffff16610d626114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90614afa565b60405180910390fd5b60025460128054905014610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614aba565b60405180910390fd5b60036000600254815260200190815260200160002060009054906101000a900460ff1615610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90614b9a565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ec19190614844565b60206040518083038186803b158015610ed957600080fd5b505afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f119190613f5c565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f709291906148b7565b602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613e77565b5050565b600e5481565b600b5481565b606060128054905083111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614a1a565b60405180910390fd5b6000611026613414565b90506000815111611046576040518060200160405280600081525061107c565b6019611051856134a6565b61105a856134a6565b60405160200161106c939291906147fd565b6040516020818303038152906040525b91505092915050565b61108d61340c565b73ffffffffffffffffffffffffffffffffffffffff166110ab6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614afa565b60405180910390fd5b601160009054906101000a900460ff1615611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890614a9a565b60405180910390fd5b60008282905060646111639190614e1b565b6005546010546111739190614e1b565b61117d9190614dea565b905060005b8383905081101561129d57600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858584818110611204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906112199190613bd8565b846040518363ffffffff1660e01b81526004016112379291906148b7565b602060405180830381600087803b15801561125157600080fd5b505af1158015611265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190613e77565b50808061129590614f9b565b915050611182565b506001601160006101000a81548160ff021916908315150217905550505050565b60055481565b606060128054905082111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614a1a565b60405180910390fd5b6013600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561136b57602002820191906000526020600020905b815481526020019060010190808311611357575b50505050509050919050565b61137f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661139d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614afa565b60405180910390fd5b6113fd6000613653565b565b6000601280549050905090565b61141461340c565b73ffffffffffffffffffffffffffffffffffffffff166114326114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614afa565b60405180910390fd5b611493826000610947565b8060156000848152602001908152602001600020819055505050565b601281815481106114bf57600080fd5b906000526020600020016000915090505481565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060128054905083111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614a1a565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905092915050565b6060601280549050821115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614a1a565b60405180910390fd5b600061160a613717565b9050600081511161162a5760405180602001604052806000815250611655565b80611634846134a6565b6040516020016116459291906147ce565b6040516020818303038152906040525b915050919050565b6003600083815260200190815260200160002060009054906101000a900460ff16156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614b5a565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905060008111611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614a3a565b60405180910390fd5b600081611774858561308a565b61177e9190614e1b565b90506000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060008581526020019081526020016000208190555060008111156118a157600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161184d9291906148b7565b602060405180830381600087803b15801561186757600080fd5b505af115801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190613e77565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a303387866040518563ffffffff1660e01b8152600401611902949392919061485f565b600060405180830381600087803b15801561191c57600080fd5b505af1158015611930573d6000803e3d6000fd5b505050503373ffffffffffffffffffffffffffffffffffffffff167f258e0e043e04264b547d6afad346476004bfcab264d41ab2ace08e69988bbe8585858460405161197e93929190614bd5565b60405180910390a250505050565b600080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166360bf2bb3856040518263ffffffff1660e01b81526004016119ea9190614bba565b60c06040518083038186803b158015611a0257600080fd5b505afa158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3a9190613f0a565b90506000816040015190506000611a53600d54836137a9565b9050600060136000888152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611ab457602002820191906000526020600020905b815481526020019060010190808311611aa0575b505050505090506000805b8251811015611b53576000838281518110611b03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050601460008b815260200190815260200160002060008281526020019081526020016000205483611b3d9190614d94565b9250508080611b4b90614f9b565b915050611abf565b506000846002600e54611b669190614e1b565b611b709190614dea565b6103e8611b7d9190614e1b565b90506000611b8b82876137a9565b905060008387611b9b9190614e75565b82611ba69190614e1b565b905060008a8589611bb79190614e75565b611bc19190614e75565b83611bcc9190614e1b565b9050600060028284611bde9190614d94565b8d611be99190614e1b565b611bf39190614dea565b90506103e881611c039190614dea565b8c89611c0f9190614e1b565b611c199190614d94565b9a505050505050505050505092915050565b60085481565b611c3961340c565b73ffffffffffffffffffffffffffffffffffffffff16611c576114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614afa565b60405180910390fd5b600060136000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d0c57602002820191906000526020600020905b815481526020019060010190808311611cf8575b5050505050905060008060005b8351811015611db3576000848281518110611d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000601460008881526020019081526020016000206000838152602001908152602001600020549050838110611d9e578194508093505b50508080611dab90614f9b565b915050611d19565b50611dbf846000610947565b81601560008681526020019081526020016000208190555050505050565b611de561340c565b73ffffffffffffffffffffffffffffffffffffffff16611e036114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090614afa565b60405180910390fd5b60648183611e679190614d94565b1115611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90614a7a565b60405180910390fd5b600081836064611eb89190614e75565b611ec29190614e75565b9050606481600c54611ed49190614e1b565b611ede9190614dea565b600d81905550606483600c54611ef49190614e1b565b611efe9190614dea565b600e81905550606482600c54611f149190614e1b565b611f1e9190614dea565b600f81905550505050565b6000601280549050831115611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614a1a565b60405180910390fd5b6003600084815260200190815260200160002060009054906101000a900460ff1615611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614b5a565b60405180910390fd5b600060156000858152602001908152602001600020541161202a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612021906149fa565b60405180910390fd5b60146000848152602001908152602001600020600083815260200190815260200160002054905092915050565b61205f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661207d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614afa565b60405180910390fd5b80601890805190602001906120e992919061380c565b5050565b600063bc197c8160e01b905095945050505050565b606061210c61340c565b73ffffffffffffffffffffffffffffffffffffffff1661212a6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790614afa565b60405180910390fd5b6000601360008481526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156121df57602002820191906000526020600020905b8154815260200190600101908083116121cb575b505050505090506000815167ffffffffffffffff811115612229577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156122575781602001602082028036833780820191505090505b50905060005b825181101561232f5760008382815181106122a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006014600088815260200190815260200160002060008381526020019081526020016000205490508084848151811061230e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505050808061232790614f9b565b91505061225d565b508092505050919050565b61234261340c565b73ffffffffffffffffffffffffffffffffffffffff166123606114d9565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614afa565b60405180910390fd5b600a600082815260200190815260200160002060009054906101000a900460ff1615612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614a5a565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009546040518363ffffffff1660e01b81526004016124c49291906148b7565b602060405180830381600087803b1580156124de57600080fd5b505af11580156124f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125169190613e77565b50600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009546040518363ffffffff1660e01b81526004016125989291906148b7565b602060405180830381600087803b1580156125b257600080fd5b505af11580156125c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ea9190613e77565b5050565b600d5481565b6125fc61340c565b73ffffffffffffffffffffffffffffffffffffffff1661261a6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790614afa565b60405180910390fd5b806019908051906020019061268692919061380c565b5050565b60095481565b6012805490508311156126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90614a1a565b60405180910390fd5b6003600084815260200190815260200160002060009054906101000a900460ff16612738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f90614b7a565b60405180910390fd5b6000811161277b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612772906149ba565b60405180910390fd5b80600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33866040518363ffffffff1660e01b81526004016127d89291906148b7565b60206040518083038186803b1580156127f057600080fd5b505afa158015612804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128289190613f5c565b1015612869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128609061497a565b60405180910390fd5b6000601360008581526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156128c857602002820191906000526020600020905b8154815260200190600101908083116128b4575b505050505090508281511015612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b3a565b60405180910390fd5b6000601560008681526020019081526020016000205490506000811461296e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296590614b1a565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020600086815260200190815260200160002054905060006014600088815260200190815260200160002060008781526020019081526020016000205490506000805b8551811015612a95576000868281518110612a45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050601460008b815260200190815260200160002060008281526020019081526020016000205483612a7f9190614d94565b9250508080612a8d90614f9b565b915050612a01565b506000612aa2898861198c565b905060008785612ab29190614d94565b905080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c815260200190815260200160002060008b81526020019081526020016000208190555080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c815260200190815260200160002060008b8152602001908152602001600020819055508784612b8c9190614d94565b601460008c815260200190815260200160002060008b815260200190815260200160002081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308d8c6040518563ffffffff1660e01b8152600401612c15949392919061485f565b600060405180830381600087803b158015612c2f57600080fd5b505af1158015612c43573d6000803e3d6000fd5b50505050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401612ca49291906148b7565b602060405180830381600087803b158015612cbe57600080fd5b505af1158015612cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf69190613e77565b503373ffffffffffffffffffffffffffffffffffffffff167f329dc4322e1eca93c98ac9c5f53e4213d68c0fcbcb08895b3b80a886a0051cee8b8b8b86604051612d439493929190614c0c565b60405180910390a250505050505050505050565b601160009054906101000a900460ff1681565b612d7261340c565b73ffffffffffffffffffffffffffffffffffffffff16612d906114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddd90614afa565b60405180910390fd5b6064818385612df59190614d94565b612dff9190614d94565b1115612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614a7a565b60405180910390fd5b86600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612ee957600080fd5b505afa158015612efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f219190613f5c565b60058190555085600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360028190555082600b81905550816008819055508060108190555060026064600254612fd69190614e1b565b612fe09190614e1b565b600854600554612ff09190614e1b565b612ffa9190614dea565b600981905550606460025461300f9190614e1b565b600b5460055461301f9190614e1b565b6130299190614dea565b600c8190555050505050505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60105481565b60036020528060005260406000206000915054906101000a900460ff1681565b60008060156000858152602001908152602001600020549050600081116130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd9061495a565b60405180910390fd5b6003600085815260200190815260200160002060009054906101000a900460ff1615613147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313e90614b5a565b60405180910390fd5b60008382149050600060146000878152602001908152602001600020600086815260200190815260200160002054905060008280156131865750600082115b1561319c5781600f546131999190614dea565b90505b8094505050505092915050565b600063f23a6e6160e01b905095945050505050565b6131c661340c565b73ffffffffffffffffffffffffffffffffffffffff166131e46114d9565b73ffffffffffffffffffffffffffffffffffffffff161461323a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323190614afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a19061499a565b60405180910390fd5b6132b381613653565b50565b6132be61340c565b73ffffffffffffffffffffffffffffffffffffffff166132dc6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614613332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332990614afa565b60405180910390fd5b60128054905083111561337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190614a1a565b60405180910390fd5b818160136000868152602001908152602001600020919061339c9291906137bf565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606019805461342390614f69565b80601f016020809104026020016040519081016040528092919081815260200182805461344f90614f69565b801561349c5780601f106134715761010080835404028352916020019161349c565b820191906000526020600020905b81548152906001019060200180831161347f57829003601f168201915b5050505050905090565b606060008214156134ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061364e565b600082905060005b6000821461352057808061350990614f9b565b915050600a826135199190614dea565b91506134f6565b60008167ffffffffffffffff811115613562577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135945781602001600182028036833780820191505090505b5090505b60008514613647576001826135ad9190614e75565b9150600a856135bc9190614fe4565b60306135c89190614d94565b60f81b818381518110613604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136409190614dea565b9450613598565b8093505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606018805461372690614f69565b80601f016020809104026020016040519081016040528092919081815260200182805461375290614f69565b801561379f5780601f106137745761010080835404028352916020019161379f565b820191906000526020600020905b81548152906001019060200180831161378257829003601f168201915b5050505050905090565b600081836137b79190614dea565b905092915050565b8280548282559060005260206000209081019282156137fb579160200282015b828111156137fa5782358255916020019190600101906137df565b5b5090506138089190613892565b5090565b82805461381890614f69565b90600052602060002090601f01602090048101928261383a5760008555613881565b82601f1061385357805160ff1916838001178555613881565b82800160010185558215613881579182015b82811115613880578251825591602001919060010190613865565b5b50905061388e9190613892565b5090565b5b808211156138ab576000816000905550600101613893565b5090565b60006138c26138bd84614c82565b614c51565b905080838252602082019050828560208602820111156138e157600080fd5b60005b8581101561391157816138f78882613bae565b8452602084019350602083019250506001810190506138e4565b5050509392505050565b600061392e61392984614cae565b614c51565b90508281526020810184848401111561394657600080fd5b613951848285614f27565b509392505050565b600061396c61396784614cde565b614c51565b90508281526020810184848401111561398457600080fd5b61398f848285614f27565b509392505050565b6000813590506139a6816150e2565b92915050565b60008083601f8401126139be57600080fd5b8235905067ffffffffffffffff8111156139d757600080fd5b6020830191508360208202830111156139ef57600080fd5b9250929050565b60008083601f840112613a0857600080fd5b8235905067ffffffffffffffff811115613a2157600080fd5b602083019150836020820283011115613a3957600080fd5b9250929050565b600082601f830112613a5157600080fd5b8135613a618482602086016138af565b91505092915050565b600081359050613a79816150f9565b92915050565b600081519050613a8e816150f9565b92915050565b600081519050613aa381615110565b92915050565b600081359050613ab881615127565b92915050565b600082601f830112613acf57600080fd5b8135613adf84826020860161391b565b91505092915050565b600082601f830112613af957600080fd5b8135613b09848260208601613959565b91505092915050565b600060c08284031215613b2457600080fd5b613b2e60c0614c51565b90506000613b3e84828501613bc3565b6000830152506020613b5284828501613bc3565b6020830152506040613b6684828501613bc3565b6040830152506060613b7a84828501613bc3565b6060830152506080613b8e84828501613bc3565b60808301525060a0613ba284828501613a94565b60a08301525092915050565b600081359050613bbd8161513e565b92915050565b600081519050613bd28161513e565b92915050565b600060208284031215613bea57600080fd5b6000613bf884828501613997565b91505092915050565b600080600080600080600060e0888a031215613c1c57600080fd5b6000613c2a8a828b01613997565b9750506020613c3b8a828b01613997565b9650506040613c4c8a828b01613997565b9550506060613c5d8a828b01613bae565b9450506080613c6e8a828b01613bae565b93505060a0613c7f8a828b01613bae565b92505060c0613c908a828b01613bae565b91505092959891949750929550565b600080600080600060a08688031215613cb757600080fd5b6000613cc588828901613997565b9550506020613cd688828901613997565b945050604086013567ffffffffffffffff811115613cf357600080fd5b613cff88828901613a40565b935050606086013567ffffffffffffffff811115613d1c57600080fd5b613d2888828901613a40565b925050608086013567ffffffffffffffff811115613d4557600080fd5b613d5188828901613abe565b9150509295509295909350565b600080600080600060a08688031215613d7657600080fd5b6000613d8488828901613997565b9550506020613d9588828901613997565b9450506040613da688828901613bae565b9350506060613db788828901613bae565b925050608086013567ffffffffffffffff811115613dd457600080fd5b613de088828901613abe565b9150509295509295909350565b60008060208385031215613e0057600080fd5b600083013567ffffffffffffffff811115613e1a57600080fd5b613e26858286016139ac565b92509250509250929050565b60008060208385031215613e4557600080fd5b600083013567ffffffffffffffff811115613e5f57600080fd5b613e6b858286016139f6565b92509250509250929050565b600060208284031215613e8957600080fd5b6000613e9784828501613a7f565b91505092915050565b600060208284031215613eb257600080fd5b6000613ec084828501613aa9565b91505092915050565b600060208284031215613edb57600080fd5b600082013567ffffffffffffffff811115613ef557600080fd5b613f0184828501613ae8565b91505092915050565b600060c08284031215613f1c57600080fd5b6000613f2a84828501613b12565b91505092915050565b600060208284031215613f4557600080fd5b6000613f5384828501613bae565b91505092915050565b600060208284031215613f6e57600080fd5b6000613f7c84828501613bc3565b91505092915050565b600080600060408486031215613f9a57600080fd5b6000613fa886828701613bae565b935050602084013567ffffffffffffffff811115613fc557600080fd5b613fd1868287016139f6565b92509250509250925092565b60008060408385031215613ff057600080fd5b6000613ffe85828601613bae565b925050602061400f85828601613a6a565b9150509250929050565b6000806040838503121561402c57600080fd5b600061403a85828601613bae565b925050602061404b85828601613bae565b9150509250929050565b60008060006060848603121561406a57600080fd5b600061407886828701613bae565b935050602061408986828701613bae565b925050604061409a86828701613bae565b9150509250925092565b60006140b083836147b0565b60208301905092915050565b6140c581614ea9565b82525050565b60006140d682614d33565b6140e08185614d56565b93506140eb83614d0e565b8060005b8381101561411c57815161410388826140a4565b975061410e83614d49565b9250506001810190506140ef565b5085935050505092915050565b61413281614ebb565b82525050565b61414181614ed1565b82525050565b600061415282614d3e565b61415c8185614d78565b935061416c818560208601614f36565b614175816150d1565b840191505092915050565b600061418b82614d3e565b6141958185614d89565b93506141a5818560208601614f36565b80840191505092915050565b600081546141be81614f69565b6141c88186614d89565b945060018216600081146141e357600181146141f457614227565b60ff19831686528186019350614227565b6141fd85614d1e565b60005b8381101561421f57815481890152600182019150602081019050614200565b838801955050505b50505092915050565b600061423d601683614d78565b91507f566f74696e67206973206e6f742066696e6973686564000000000000000000006000830152602082019050919050565b600061427d601983614d78565b91507f496e73756666696369656e7420706173732062616c616e6365000000000000006000830152602082019050919050565b60006142bd602683614d78565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614323600e83614d78565b91507f43616e6e6f74207374616b6520300000000000000000000000000000000000006000830152602082019050919050565b6000614363601683614d78565b91507f566f74696e6720737461746520756e6368616e676564000000000000000000006000830152602082019050919050565b60006143a3601383614d78565b91507f566f74696e67206e6f742066696e6973686564000000000000000000000000006000830152602082019050919050565b60006143e3601683614d78565b91507f457069736f646520646f6573206e6f74206578697374000000000000000000006000830152602082019050919050565b6000614423601983614d78565b91507f4e6f2070726f647563657220706173736573207374616b6564000000000000006000830152602082019050919050565b6000614463601983614d78565b91507f41727469737420746f6b656e73206469737472696275746564000000000000006000830152602082019050919050565b60006144a3601c83614d78565b91507f546f74616c2070657263656e74616765206578636565647320313030000000006000830152602082019050919050565b60006144e3601783614d78565b91507f5465616d20746f6b656e732064697374726962757465640000000000000000006000830152602082019050919050565b6000614523600e83614d78565b91507f53686f77206e6f7420656e6465640000000000000000000000000000000000006000830152602082019050919050565b6000614563601e83614d78565b91507f57696e6e657220666f7220657069736f646520616c72656164792073657400006000830152602082019050919050565b60006145a3600583614d89565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006145e3602083614d78565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614623601783614d78565b91507f57696e6e657220616c7265616479206465636c617265640000000000000000006000830152602082019050919050565b6000614663600083614d67565b9150600082019050919050565b600061467d601583614d78565b91507f496e76616c696420766f74696e67206f7074696f6e00000000000000000000006000830152602082019050919050565b60006146bd601783614d78565b91507f566f74696e67206973207374696c6c20656e61626c65640000000000000000006000830152602082019050919050565b60006146fd601283614d78565b91507f566f74696e67206e6f7420656e61626c656400000000000000000000000000006000830152602082019050919050565b600061473d601983614d78565b91507f4c61737420657069736f6465207374696c6c20766f74696e67000000000000006000830152602082019050919050565b600061477d600183614d89565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6147b981614f1d565b82525050565b6147c881614f1d565b82525050565b60006147da8285614180565b91506147e68284614180565b91506147f182614596565b91508190509392505050565b600061480982866141b1565b91506148158285614180565b915061482082614770565b915061482c8284614180565b915061483782614596565b9150819050949350505050565b600060208201905061485960008301846140bc565b92915050565b600060a08201905061487460008301876140bc565b61488160208301866140bc565b61488e60408301856147bf565b61489b60608301846147bf565b81810360808301526148ac81614656565b905095945050505050565b60006040820190506148cc60008301856140bc565b6148d960208301846147bf565b9392505050565b600060208201905081810360008301526148fa81846140cb565b905092915050565b60006020820190506149176000830184614129565b92915050565b60006020820190506149326000830184614138565b92915050565b600060208201905081810360008301526149528184614147565b905092915050565b6000602082019050818103600083015261497381614230565b9050919050565b6000602082019050818103600083015261499381614270565b9050919050565b600060208201905081810360008301526149b3816142b0565b9050919050565b600060208201905081810360008301526149d381614316565b9050919050565b600060208201905081810360008301526149f381614356565b9050919050565b60006020820190508181036000830152614a1381614396565b9050919050565b60006020820190508181036000830152614a33816143d6565b9050919050565b60006020820190508181036000830152614a5381614416565b9050919050565b60006020820190508181036000830152614a7381614456565b9050919050565b60006020820190508181036000830152614a9381614496565b9050919050565b60006020820190508181036000830152614ab3816144d6565b9050919050565b60006020820190508181036000830152614ad381614516565b9050919050565b60006020820190508181036000830152614af381614556565b9050919050565b60006020820190508181036000830152614b13816145d6565b9050919050565b60006020820190508181036000830152614b3381614616565b9050919050565b60006020820190508181036000830152614b5381614670565b9050919050565b60006020820190508181036000830152614b73816146b0565b9050919050565b60006020820190508181036000830152614b93816146f0565b9050919050565b60006020820190508181036000830152614bb381614730565b9050919050565b6000602082019050614bcf60008301846147bf565b92915050565b6000606082019050614bea60008301866147bf565b614bf760208301856147bf565b614c0460408301846147bf565b949350505050565b6000608082019050614c2160008301876147bf565b614c2e60208301866147bf565b614c3b60408301856147bf565b614c4860608301846147bf565b95945050505050565b6000604051905081810181811067ffffffffffffffff82111715614c7857614c776150a2565b5b8060405250919050565b600067ffffffffffffffff821115614c9d57614c9c6150a2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cc957614cc86150a2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614cf957614cf86150a2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d9f82614f1d565b9150614daa83614f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ddf57614dde615015565b5b828201905092915050565b6000614df582614f1d565b9150614e0083614f1d565b925082614e1057614e0f615044565b5b828204905092915050565b6000614e2682614f1d565b9150614e3183614f1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6a57614e69615015565b5b828202905092915050565b6000614e8082614f1d565b9150614e8b83614f1d565b925082821015614e9e57614e9d615015565b5b828203905092915050565b6000614eb482614efd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f54578082015181840152602081019050614f39565b83811115614f63576000848401525b50505050565b60006002820490506001821680614f8157607f821691505b60208210811415614f9557614f94615073565b5b50919050565b6000614fa682614f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fd957614fd8615015565b5b600182019050919050565b6000614fef82614f1d565b9150614ffa83614f1d565b92508261500a57615009615044565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6150eb81614ea9565b81146150f657600080fd5b50565b61510281614ebb565b811461510d57600080fd5b50565b61511981614ec7565b811461512457600080fd5b50565b61513081614ed1565b811461513b57600080fd5b50565b61514781614f1d565b811461515257600080fd5b5056fea2646970667358221220fc7fb3d7564559d3fd32c8be86187a592996f449f839fa7c243f11eb830bafd164736f6c6343000800003300000000000000000000000097ed92e744c10fdd5d403a756239c4069e415e79
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061028a5760003560e01c8063a11d5fb51161015c578063c89089f3116100ce578063ebfd4f6e11610087578063ebfd4f6e146107e7578063ecf6f87b14610805578063f0c0120f14610835578063f23a6e6114610865578063f2fde38b14610895578063fadd0bd6146108b15761028a565b8063c89089f314610737578063cc4e737014610755578063e0bbb21814610771578063ea2657bf1461078f578063eb2f88b8146107ab578063eba8a3ca146107c95761028a565b8063bbd5072411610120578063bbd5072414610665578063bc197c8114610681578063bc873a9e146106b1578063bea8d7b7146106e1578063bfa04e0d146106fd578063c51cb1711461071b5761028a565b8063a11d5fb5146105af578063a76831de146105df578063add4a7a3146105fd578063b136f71c14610619578063b4ae013d146106355761028a565b80635a59c38e1161020057806386f328a9116101b957806386f328a9146104c757806389e0ff72146104f75780638da5cb5b14610515578063926af1fa146105335780639485cf7f1461056357806397de1e33146105935761028a565b80635a59c38e146104195780635c351244146104355780636a40092c14610453578063715018a6146104835780637b0720261461048d5780637bf43e4b146104ab5761028a565b80631c4203fe116102525780631c4203fe146103575780631e9fab101461038757806328d8077a146103a35780632c3bb82a146103ad57806333f56262146103cb5780634c47d227146103e95761028a565b806301ffc9a71461028f57806304af8445146102bf57806309717b41146102db57806310d2b3601461030b5780631131a8ac14610327575b600080fd5b6102a960048036038101906102a49190613ea0565b6108cd565b6040516102b69190614902565b60405180910390f35b6102d960048036038101906102d49190613fdd565b610947565b005b6102f560048036038101906102f09190613f33565b610afe565b6040516103029190614bba565b60405180910390f35b61032560048036038101906103209190613e32565b610b16565b005b610341600480360381019061033c9190614019565b610ba8565b60405161034e9190614bba565b60405180910390f35b610371600480360381019061036c9190613f33565b610c5c565b60405161037e9190614902565b60405180910390f35b6103a1600480360381019061039c9190613bd8565b610c7c565b005b6103ab610d3c565b005b6103b5610fc6565b6040516103c29190614bba565b60405180910390f35b6103d3610fcc565b6040516103e09190614bba565b60405180910390f35b61040360048036038101906103fe9190614019565b610fd2565b6040516104109190614938565b60405180910390f35b610433600480360381019061042e9190613ded565b611085565b005b61043d6112be565b60405161044a9190614bba565b60405180910390f35b61046d60048036038101906104689190613f33565b6112c4565b60405161047a91906148e0565b60405180910390f35b61048b611377565b005b6104956113ff565b6040516104a29190614bba565b60405180910390f35b6104c560048036038101906104c09190614019565b61140c565b005b6104e160048036038101906104dc9190613f33565b6114af565b6040516104ee9190614bba565b60405180910390f35b6104ff6114d3565b60405161050c9190614bba565b60405180910390f35b61051d6114d9565b60405161052a9190614844565b60405180910390f35b61054d60048036038101906105489190614019565b611502565b60405161055a9190614bba565b60405180910390f35b61057d60048036038101906105789190613f33565b6115b6565b60405161058a9190614938565b60405180910390f35b6105ad60048036038101906105a89190614019565b61165d565b005b6105c960048036038101906105c49190614019565b61198c565b6040516105d69190614bba565b60405180910390f35b6105e7611c2b565b6040516105f49190614bba565b60405180910390f35b61061760048036038101906106129190613f33565b611c31565b005b610633600480360381019061062e9190614019565b611ddd565b005b61064f600480360381019061064a9190614019565b611f29565b60405161065c9190614bba565b60405180910390f35b61067f600480360381019061067a9190613ec9565b612057565b005b61069b60048036038101906106969190613c9f565b6120ed565b6040516106a8919061491d565b60405180910390f35b6106cb60048036038101906106c69190613f33565b612102565b6040516106d891906148e0565b60405180910390f35b6106fb60048036038101906106f69190613f33565b61233a565b005b6107056125ee565b6040516107129190614bba565b60405180910390f35b61073560048036038101906107309190613ec9565b6125f4565b005b61073f61268a565b60405161074c9190614bba565b60405180910390f35b61076f600480360381019061076a9190614055565b612690565b005b610779612d57565b6040516107869190614902565b60405180910390f35b6107a960048036038101906107a49190613c01565b612d6a565b005b6107b3613038565b6040516107c09190614844565b60405180910390f35b6107d161305e565b6040516107de9190614bba565b60405180910390f35b6107ef613064565b6040516107fc9190614bba565b60405180910390f35b61081f600480360381019061081a9190613f33565b61306a565b60405161082c9190614902565b60405180910390f35b61084f600480360381019061084a9190614019565b61308a565b60405161085c9190614bba565b60405180910390f35b61087f600480360381019061087a9190613d5e565b6131a9565b60405161088c919061491d565b60405180910390f35b6108af60048036038101906108aa9190613bd8565b6131be565b005b6108cb60048036038101906108c69190613f85565b6132b6565b005b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610940575061093f826133a2565b5b9050919050565b61094f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661096d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90614afa565b60405180910390fd5b601280549050821115610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290614a1a565b60405180910390fd5b8015156003600084815260200190815260200160002060009054906101000a900460ff1615151415610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a69906149da565b60405180910390fd5b8015610acf576000601560008481526020019081526020016000205414610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590614ada565b60405180910390fd5b5b806003600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60156020528060005260406000206000915090505481565b610b1e61340c565b73ffffffffffffffffffffffffffffffffffffffff16610b3c6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990614afa565b60405180910390fd5b818160129190610ba39291906137bf565b505050565b6000601280549050831115610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614a1a565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610c8461340c565b73ffffffffffffffffffffffffffffffffffffffff16610ca26114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90614afa565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4461340c565b73ffffffffffffffffffffffffffffffffffffffff16610d626114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90614afa565b60405180910390fd5b60025460128054905014610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614aba565b60405180910390fd5b60036000600254815260200190815260200160002060009054906101000a900460ff1615610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90614b9a565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ec19190614844565b60206040518083038186803b158015610ed957600080fd5b505afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f119190613f5c565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f709291906148b7565b602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613e77565b5050565b600e5481565b600b5481565b606060128054905083111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614a1a565b60405180910390fd5b6000611026613414565b90506000815111611046576040518060200160405280600081525061107c565b6019611051856134a6565b61105a856134a6565b60405160200161106c939291906147fd565b6040516020818303038152906040525b91505092915050565b61108d61340c565b73ffffffffffffffffffffffffffffffffffffffff166110ab6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614afa565b60405180910390fd5b601160009054906101000a900460ff1615611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890614a9a565b60405180910390fd5b60008282905060646111639190614e1b565b6005546010546111739190614e1b565b61117d9190614dea565b905060005b8383905081101561129d57600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858584818110611204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906112199190613bd8565b846040518363ffffffff1660e01b81526004016112379291906148b7565b602060405180830381600087803b15801561125157600080fd5b505af1158015611265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190613e77565b50808061129590614f9b565b915050611182565b506001601160006101000a81548160ff021916908315150217905550505050565b60055481565b606060128054905082111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614a1a565b60405180910390fd5b6013600083815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561136b57602002820191906000526020600020905b815481526020019060010190808311611357575b50505050509050919050565b61137f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661139d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614afa565b60405180910390fd5b6113fd6000613653565b565b6000601280549050905090565b61141461340c565b73ffffffffffffffffffffffffffffffffffffffff166114326114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614afa565b60405180910390fd5b611493826000610947565b8060156000848152602001908152602001600020819055505050565b601281815481106114bf57600080fd5b906000526020600020016000915090505481565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060128054905083111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614a1a565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905092915050565b6060601280549050821115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614a1a565b60405180910390fd5b600061160a613717565b9050600081511161162a5760405180602001604052806000815250611655565b80611634846134a6565b6040516020016116459291906147ce565b6040516020818303038152906040525b915050919050565b6003600083815260200190815260200160002060009054906101000a900460ff16156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614b5a565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600083815260200190815260200160002054905060008111611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614a3a565b60405180910390fd5b600081611774858561308a565b61177e9190614e1b565b90506000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060008581526020019081526020016000208190555060008111156118a157600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161184d9291906148b7565b602060405180830381600087803b15801561186757600080fd5b505af115801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190613e77565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a303387866040518563ffffffff1660e01b8152600401611902949392919061485f565b600060405180830381600087803b15801561191c57600080fd5b505af1158015611930573d6000803e3d6000fd5b505050503373ffffffffffffffffffffffffffffffffffffffff167f258e0e043e04264b547d6afad346476004bfcab264d41ab2ace08e69988bbe8585858460405161197e93929190614bd5565b60405180910390a250505050565b600080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166360bf2bb3856040518263ffffffff1660e01b81526004016119ea9190614bba565b60c06040518083038186803b158015611a0257600080fd5b505afa158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3a9190613f0a565b90506000816040015190506000611a53600d54836137a9565b9050600060136000888152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611ab457602002820191906000526020600020905b815481526020019060010190808311611aa0575b505050505090506000805b8251811015611b53576000838281518110611b03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050601460008b815260200190815260200160002060008281526020019081526020016000205483611b3d9190614d94565b9250508080611b4b90614f9b565b915050611abf565b506000846002600e54611b669190614e1b565b611b709190614dea565b6103e8611b7d9190614e1b565b90506000611b8b82876137a9565b905060008387611b9b9190614e75565b82611ba69190614e1b565b905060008a8589611bb79190614e75565b611bc19190614e75565b83611bcc9190614e1b565b9050600060028284611bde9190614d94565b8d611be99190614e1b565b611bf39190614dea565b90506103e881611c039190614dea565b8c89611c0f9190614e1b565b611c199190614d94565b9a505050505050505050505092915050565b60085481565b611c3961340c565b73ffffffffffffffffffffffffffffffffffffffff16611c576114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614afa565b60405180910390fd5b600060136000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d0c57602002820191906000526020600020905b815481526020019060010190808311611cf8575b5050505050905060008060005b8351811015611db3576000848281518110611d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000601460008881526020019081526020016000206000838152602001908152602001600020549050838110611d9e578194508093505b50508080611dab90614f9b565b915050611d19565b50611dbf846000610947565b81601560008681526020019081526020016000208190555050505050565b611de561340c565b73ffffffffffffffffffffffffffffffffffffffff16611e036114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090614afa565b60405180910390fd5b60648183611e679190614d94565b1115611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f90614a7a565b60405180910390fd5b600081836064611eb89190614e75565b611ec29190614e75565b9050606481600c54611ed49190614e1b565b611ede9190614dea565b600d81905550606483600c54611ef49190614e1b565b611efe9190614dea565b600e81905550606482600c54611f149190614e1b565b611f1e9190614dea565b600f81905550505050565b6000601280549050831115611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614a1a565b60405180910390fd5b6003600084815260200190815260200160002060009054906101000a900460ff1615611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614b5a565b60405180910390fd5b600060156000858152602001908152602001600020541161202a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612021906149fa565b60405180910390fd5b60146000848152602001908152602001600020600083815260200190815260200160002054905092915050565b61205f61340c565b73ffffffffffffffffffffffffffffffffffffffff1661207d6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614afa565b60405180910390fd5b80601890805190602001906120e992919061380c565b5050565b600063bc197c8160e01b905095945050505050565b606061210c61340c565b73ffffffffffffffffffffffffffffffffffffffff1661212a6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790614afa565b60405180910390fd5b6000601360008481526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156121df57602002820191906000526020600020905b8154815260200190600101908083116121cb575b505050505090506000815167ffffffffffffffff811115612229577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156122575781602001602082028036833780820191505090505b50905060005b825181101561232f5760008382815181106122a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006014600088815260200190815260200160002060008381526020019081526020016000205490508084848151811061230e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505050808061232790614f9b565b91505061225d565b508092505050919050565b61234261340c565b73ffffffffffffffffffffffffffffffffffffffff166123606114d9565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614afa565b60405180910390fd5b600a600082815260200190815260200160002060009054906101000a900460ff1615612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614a5a565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009546040518363ffffffff1660e01b81526004016124c49291906148b7565b602060405180830381600087803b1580156124de57600080fd5b505af11580156124f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125169190613e77565b50600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009546040518363ffffffff1660e01b81526004016125989291906148b7565b602060405180830381600087803b1580156125b257600080fd5b505af11580156125c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ea9190613e77565b5050565b600d5481565b6125fc61340c565b73ffffffffffffffffffffffffffffffffffffffff1661261a6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790614afa565b60405180910390fd5b806019908051906020019061268692919061380c565b5050565b60095481565b6012805490508311156126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90614a1a565b60405180910390fd5b6003600084815260200190815260200160002060009054906101000a900460ff16612738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f90614b7a565b60405180910390fd5b6000811161277b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612772906149ba565b60405180910390fd5b80600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33866040518363ffffffff1660e01b81526004016127d89291906148b7565b60206040518083038186803b1580156127f057600080fd5b505afa158015612804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128289190613f5c565b1015612869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128609061497a565b60405180910390fd5b6000601360008581526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156128c857602002820191906000526020600020905b8154815260200190600101908083116128b4575b505050505090508281511015612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b3a565b60405180910390fd5b6000601560008681526020019081526020016000205490506000811461296e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296590614b1a565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020600086815260200190815260200160002054905060006014600088815260200190815260200160002060008781526020019081526020016000205490506000805b8551811015612a95576000868281518110612a45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050601460008b815260200190815260200160002060008281526020019081526020016000205483612a7f9190614d94565b9250508080612a8d90614f9b565b915050612a01565b506000612aa2898861198c565b905060008785612ab29190614d94565b905080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c815260200190815260200160002060008b81526020019081526020016000208190555080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c815260200190815260200160002060008b8152602001908152602001600020819055508784612b8c9190614d94565b601460008c815260200190815260200160002060008b815260200190815260200160002081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308d8c6040518563ffffffff1660e01b8152600401612c15949392919061485f565b600060405180830381600087803b158015612c2f57600080fd5b505af1158015612c43573d6000803e3d6000fd5b50505050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401612ca49291906148b7565b602060405180830381600087803b158015612cbe57600080fd5b505af1158015612cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf69190613e77565b503373ffffffffffffffffffffffffffffffffffffffff167f329dc4322e1eca93c98ac9c5f53e4213d68c0fcbcb08895b3b80a886a0051cee8b8b8b86604051612d439493929190614c0c565b60405180910390a250505050505050505050565b601160009054906101000a900460ff1681565b612d7261340c565b73ffffffffffffffffffffffffffffffffffffffff16612d906114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddd90614afa565b60405180910390fd5b6064818385612df59190614d94565b612dff9190614d94565b1115612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614a7a565b60405180910390fd5b86600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612ee957600080fd5b505afa158015612efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f219190613f5c565b60058190555085600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360028190555082600b81905550816008819055508060108190555060026064600254612fd69190614e1b565b612fe09190614e1b565b600854600554612ff09190614e1b565b612ffa9190614dea565b600981905550606460025461300f9190614e1b565b600b5460055461301f9190614e1b565b6130299190614dea565b600c8190555050505050505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60105481565b60036020528060005260406000206000915054906101000a900460ff1681565b60008060156000858152602001908152602001600020549050600081116130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd9061495a565b60405180910390fd5b6003600085815260200190815260200160002060009054906101000a900460ff1615613147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313e90614b5a565b60405180910390fd5b60008382149050600060146000878152602001908152602001600020600086815260200190815260200160002054905060008280156131865750600082115b1561319c5781600f546131999190614dea565b90505b8094505050505092915050565b600063f23a6e6160e01b905095945050505050565b6131c661340c565b73ffffffffffffffffffffffffffffffffffffffff166131e46114d9565b73ffffffffffffffffffffffffffffffffffffffff161461323a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323190614afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a19061499a565b60405180910390fd5b6132b381613653565b50565b6132be61340c565b73ffffffffffffffffffffffffffffffffffffffff166132dc6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614613332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332990614afa565b60405180910390fd5b60128054905083111561337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337190614a1a565b60405180910390fd5b818160136000868152602001908152602001600020919061339c9291906137bf565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606019805461342390614f69565b80601f016020809104026020016040519081016040528092919081815260200182805461344f90614f69565b801561349c5780601f106134715761010080835404028352916020019161349c565b820191906000526020600020905b81548152906001019060200180831161347f57829003601f168201915b5050505050905090565b606060008214156134ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061364e565b600082905060005b6000821461352057808061350990614f9b565b915050600a826135199190614dea565b91506134f6565b60008167ffffffffffffffff811115613562577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135945781602001600182028036833780820191505090505b5090505b60008514613647576001826135ad9190614e75565b9150600a856135bc9190614fe4565b60306135c89190614d94565b60f81b818381518110613604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136409190614dea565b9450613598565b8093505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606018805461372690614f69565b80601f016020809104026020016040519081016040528092919081815260200182805461375290614f69565b801561379f5780601f106137745761010080835404028352916020019161379f565b820191906000526020600020905b81548152906001019060200180831161378257829003601f168201915b5050505050905090565b600081836137b79190614dea565b905092915050565b8280548282559060005260206000209081019282156137fb579160200282015b828111156137fa5782358255916020019190600101906137df565b5b5090506138089190613892565b5090565b82805461381890614f69565b90600052602060002090601f01602090048101928261383a5760008555613881565b82601f1061385357805160ff1916838001178555613881565b82800160010185558215613881579182015b82811115613880578251825591602001919060010190613865565b5b50905061388e9190613892565b5090565b5b808211156138ab576000816000905550600101613893565b5090565b60006138c26138bd84614c82565b614c51565b905080838252602082019050828560208602820111156138e157600080fd5b60005b8581101561391157816138f78882613bae565b8452602084019350602083019250506001810190506138e4565b5050509392505050565b600061392e61392984614cae565b614c51565b90508281526020810184848401111561394657600080fd5b613951848285614f27565b509392505050565b600061396c61396784614cde565b614c51565b90508281526020810184848401111561398457600080fd5b61398f848285614f27565b509392505050565b6000813590506139a6816150e2565b92915050565b60008083601f8401126139be57600080fd5b8235905067ffffffffffffffff8111156139d757600080fd5b6020830191508360208202830111156139ef57600080fd5b9250929050565b60008083601f840112613a0857600080fd5b8235905067ffffffffffffffff811115613a2157600080fd5b602083019150836020820283011115613a3957600080fd5b9250929050565b600082601f830112613a5157600080fd5b8135613a618482602086016138af565b91505092915050565b600081359050613a79816150f9565b92915050565b600081519050613a8e816150f9565b92915050565b600081519050613aa381615110565b92915050565b600081359050613ab881615127565b92915050565b600082601f830112613acf57600080fd5b8135613adf84826020860161391b565b91505092915050565b600082601f830112613af957600080fd5b8135613b09848260208601613959565b91505092915050565b600060c08284031215613b2457600080fd5b613b2e60c0614c51565b90506000613b3e84828501613bc3565b6000830152506020613b5284828501613bc3565b6020830152506040613b6684828501613bc3565b6040830152506060613b7a84828501613bc3565b6060830152506080613b8e84828501613bc3565b60808301525060a0613ba284828501613a94565b60a08301525092915050565b600081359050613bbd8161513e565b92915050565b600081519050613bd28161513e565b92915050565b600060208284031215613bea57600080fd5b6000613bf884828501613997565b91505092915050565b600080600080600080600060e0888a031215613c1c57600080fd5b6000613c2a8a828b01613997565b9750506020613c3b8a828b01613997565b9650506040613c4c8a828b01613997565b9550506060613c5d8a828b01613bae565b9450506080613c6e8a828b01613bae565b93505060a0613c7f8a828b01613bae565b92505060c0613c908a828b01613bae565b91505092959891949750929550565b600080600080600060a08688031215613cb757600080fd5b6000613cc588828901613997565b9550506020613cd688828901613997565b945050604086013567ffffffffffffffff811115613cf357600080fd5b613cff88828901613a40565b935050606086013567ffffffffffffffff811115613d1c57600080fd5b613d2888828901613a40565b925050608086013567ffffffffffffffff811115613d4557600080fd5b613d5188828901613abe565b9150509295509295909350565b600080600080600060a08688031215613d7657600080fd5b6000613d8488828901613997565b9550506020613d9588828901613997565b9450506040613da688828901613bae565b9350506060613db788828901613bae565b925050608086013567ffffffffffffffff811115613dd457600080fd5b613de088828901613abe565b9150509295509295909350565b60008060208385031215613e0057600080fd5b600083013567ffffffffffffffff811115613e1a57600080fd5b613e26858286016139ac565b92509250509250929050565b60008060208385031215613e4557600080fd5b600083013567ffffffffffffffff811115613e5f57600080fd5b613e6b858286016139f6565b92509250509250929050565b600060208284031215613e8957600080fd5b6000613e9784828501613a7f565b91505092915050565b600060208284031215613eb257600080fd5b6000613ec084828501613aa9565b91505092915050565b600060208284031215613edb57600080fd5b600082013567ffffffffffffffff811115613ef557600080fd5b613f0184828501613ae8565b91505092915050565b600060c08284031215613f1c57600080fd5b6000613f2a84828501613b12565b91505092915050565b600060208284031215613f4557600080fd5b6000613f5384828501613bae565b91505092915050565b600060208284031215613f6e57600080fd5b6000613f7c84828501613bc3565b91505092915050565b600080600060408486031215613f9a57600080fd5b6000613fa886828701613bae565b935050602084013567ffffffffffffffff811115613fc557600080fd5b613fd1868287016139f6565b92509250509250925092565b60008060408385031215613ff057600080fd5b6000613ffe85828601613bae565b925050602061400f85828601613a6a565b9150509250929050565b6000806040838503121561402c57600080fd5b600061403a85828601613bae565b925050602061404b85828601613bae565b9150509250929050565b60008060006060848603121561406a57600080fd5b600061407886828701613bae565b935050602061408986828701613bae565b925050604061409a86828701613bae565b9150509250925092565b60006140b083836147b0565b60208301905092915050565b6140c581614ea9565b82525050565b60006140d682614d33565b6140e08185614d56565b93506140eb83614d0e565b8060005b8381101561411c57815161410388826140a4565b975061410e83614d49565b9250506001810190506140ef565b5085935050505092915050565b61413281614ebb565b82525050565b61414181614ed1565b82525050565b600061415282614d3e565b61415c8185614d78565b935061416c818560208601614f36565b614175816150d1565b840191505092915050565b600061418b82614d3e565b6141958185614d89565b93506141a5818560208601614f36565b80840191505092915050565b600081546141be81614f69565b6141c88186614d89565b945060018216600081146141e357600181146141f457614227565b60ff19831686528186019350614227565b6141fd85614d1e565b60005b8381101561421f57815481890152600182019150602081019050614200565b838801955050505b50505092915050565b600061423d601683614d78565b91507f566f74696e67206973206e6f742066696e6973686564000000000000000000006000830152602082019050919050565b600061427d601983614d78565b91507f496e73756666696369656e7420706173732062616c616e6365000000000000006000830152602082019050919050565b60006142bd602683614d78565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614323600e83614d78565b91507f43616e6e6f74207374616b6520300000000000000000000000000000000000006000830152602082019050919050565b6000614363601683614d78565b91507f566f74696e6720737461746520756e6368616e676564000000000000000000006000830152602082019050919050565b60006143a3601383614d78565b91507f566f74696e67206e6f742066696e6973686564000000000000000000000000006000830152602082019050919050565b60006143e3601683614d78565b91507f457069736f646520646f6573206e6f74206578697374000000000000000000006000830152602082019050919050565b6000614423601983614d78565b91507f4e6f2070726f647563657220706173736573207374616b6564000000000000006000830152602082019050919050565b6000614463601983614d78565b91507f41727469737420746f6b656e73206469737472696275746564000000000000006000830152602082019050919050565b60006144a3601c83614d78565b91507f546f74616c2070657263656e74616765206578636565647320313030000000006000830152602082019050919050565b60006144e3601783614d78565b91507f5465616d20746f6b656e732064697374726962757465640000000000000000006000830152602082019050919050565b6000614523600e83614d78565b91507f53686f77206e6f7420656e6465640000000000000000000000000000000000006000830152602082019050919050565b6000614563601e83614d78565b91507f57696e6e657220666f7220657069736f646520616c72656164792073657400006000830152602082019050919050565b60006145a3600583614d89565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006145e3602083614d78565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614623601783614d78565b91507f57696e6e657220616c7265616479206465636c617265640000000000000000006000830152602082019050919050565b6000614663600083614d67565b9150600082019050919050565b600061467d601583614d78565b91507f496e76616c696420766f74696e67206f7074696f6e00000000000000000000006000830152602082019050919050565b60006146bd601783614d78565b91507f566f74696e67206973207374696c6c20656e61626c65640000000000000000006000830152602082019050919050565b60006146fd601283614d78565b91507f566f74696e67206e6f7420656e61626c656400000000000000000000000000006000830152602082019050919050565b600061473d601983614d78565b91507f4c61737420657069736f6465207374696c6c20766f74696e67000000000000006000830152602082019050919050565b600061477d600183614d89565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6147b981614f1d565b82525050565b6147c881614f1d565b82525050565b60006147da8285614180565b91506147e68284614180565b91506147f182614596565b91508190509392505050565b600061480982866141b1565b91506148158285614180565b915061482082614770565b915061482c8284614180565b915061483782614596565b9150819050949350505050565b600060208201905061485960008301846140bc565b92915050565b600060a08201905061487460008301876140bc565b61488160208301866140bc565b61488e60408301856147bf565b61489b60608301846147bf565b81810360808301526148ac81614656565b905095945050505050565b60006040820190506148cc60008301856140bc565b6148d960208301846147bf565b9392505050565b600060208201905081810360008301526148fa81846140cb565b905092915050565b60006020820190506149176000830184614129565b92915050565b60006020820190506149326000830184614138565b92915050565b600060208201905081810360008301526149528184614147565b905092915050565b6000602082019050818103600083015261497381614230565b9050919050565b6000602082019050818103600083015261499381614270565b9050919050565b600060208201905081810360008301526149b3816142b0565b9050919050565b600060208201905081810360008301526149d381614316565b9050919050565b600060208201905081810360008301526149f381614356565b9050919050565b60006020820190508181036000830152614a1381614396565b9050919050565b60006020820190508181036000830152614a33816143d6565b9050919050565b60006020820190508181036000830152614a5381614416565b9050919050565b60006020820190508181036000830152614a7381614456565b9050919050565b60006020820190508181036000830152614a9381614496565b9050919050565b60006020820190508181036000830152614ab3816144d6565b9050919050565b60006020820190508181036000830152614ad381614516565b9050919050565b60006020820190508181036000830152614af381614556565b9050919050565b60006020820190508181036000830152614b13816145d6565b9050919050565b60006020820190508181036000830152614b3381614616565b9050919050565b60006020820190508181036000830152614b5381614670565b9050919050565b60006020820190508181036000830152614b73816146b0565b9050919050565b60006020820190508181036000830152614b93816146f0565b9050919050565b60006020820190508181036000830152614bb381614730565b9050919050565b6000602082019050614bcf60008301846147bf565b92915050565b6000606082019050614bea60008301866147bf565b614bf760208301856147bf565b614c0460408301846147bf565b949350505050565b6000608082019050614c2160008301876147bf565b614c2e60208301866147bf565b614c3b60408301856147bf565b614c4860608301846147bf565b95945050505050565b6000604051905081810181811067ffffffffffffffff82111715614c7857614c776150a2565b5b8060405250919050565b600067ffffffffffffffff821115614c9d57614c9c6150a2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cc957614cc86150a2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614cf957614cf86150a2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d9f82614f1d565b9150614daa83614f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ddf57614dde615015565b5b828201905092915050565b6000614df582614f1d565b9150614e0083614f1d565b925082614e1057614e0f615044565b5b828204905092915050565b6000614e2682614f1d565b9150614e3183614f1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6a57614e69615015565b5b828202905092915050565b6000614e8082614f1d565b9150614e8b83614f1d565b925082821015614e9e57614e9d615015565b5b828203905092915050565b6000614eb482614efd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f54578082015181840152602081019050614f39565b83811115614f63576000848401525b50505050565b60006002820490506001821680614f8157607f821691505b60208210811415614f9557614f94615073565b5b50919050565b6000614fa682614f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fd957614fd8615015565b5b600182019050919050565b6000614fef82614f1d565b9150614ffa83614f1d565b92508261500a57615009615044565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6150eb81614ea9565b81146150f657600080fd5b50565b61510281614ebb565b811461510d57600080fd5b50565b61511981614ec7565b811461512457600080fd5b50565b61513081614ed1565b811461513b57600080fd5b50565b61514781614f1d565b811461515257600080fd5b5056fea2646970667358221220fc7fb3d7564559d3fd32c8be86187a592996f449f839fa7c243f11eb830bafd164736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000097ed92e744c10fdd5d403a756239c4069e415e79
-----Decoded View---------------
Arg [0] : whiteRabbitProducerPassContract (address): 0x97ed92E744C10FdD5D403A756239C4069e415e79
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000097ed92e744c10fdd5d403a756239c4069e415e79
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.